@xano/xanoscript-language-server 11.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +27 -0
- package/.github/copilot-instructions.md +190 -0
- package/.github/workflows/ci.yml +31 -0
- package/.husky/pre-commit +1 -0
- package/CLAUDE.md +121 -0
- package/LICENSE +21 -0
- package/README.md +55 -0
- package/connection.js +7 -0
- package/documents.js +5 -0
- package/embedded/README.md +102 -0
- package/embedded/embeddedContent.js +74 -0
- package/embedded/embeddedDocuments.js +57 -0
- package/embedded/jsLanguageService.js +74 -0
- package/eslint.config.js +24 -0
- package/language-server-worker.js +52 -0
- package/lexer/action.js +31 -0
- package/lexer/addon.js +31 -0
- package/lexer/agent.js +37 -0
- package/lexer/agent_trigger.js +42 -0
- package/lexer/ai.js +82 -0
- package/lexer/api.js +81 -0
- package/lexer/api_group.js +58 -0
- package/lexer/arrays.js +161 -0
- package/lexer/branch.js +31 -0
- package/lexer/cast.js +105 -0
- package/lexer/cloud.js +159 -0
- package/lexer/columns.js +234 -0
- package/lexer/comment.js +61 -0
- package/lexer/comment.spec.js +77 -0
- package/lexer/control.js +634 -0
- package/lexer/db.js +190 -0
- package/lexer/debug.js +37 -0
- package/lexer/expect.js +157 -0
- package/lexer/function.js +36 -0
- package/lexer/identifier.js +6 -0
- package/lexer/lexer.js +26 -0
- package/lexer/literal.js +77 -0
- package/lexer/math.js +97 -0
- package/lexer/mcp_server.js +51 -0
- package/lexer/mcp_server_trigger.js +42 -0
- package/lexer/middleware.js +42 -0
- package/lexer/multiline.js +24 -0
- package/lexer/multiline.spec.js +179 -0
- package/lexer/object.js +44 -0
- package/lexer/query.js +99 -0
- package/lexer/realtime_trigger.js +50 -0
- package/lexer/redis.js +145 -0
- package/lexer/security.js +161 -0
- package/lexer/storage.js +99 -0
- package/lexer/stream.js +49 -0
- package/lexer/table.js +38 -0
- package/lexer/table_trigger.js +50 -0
- package/lexer/task.js +83 -0
- package/lexer/tests/query/query_lexer.spec.js +36 -0
- package/lexer/tests/query/valid_sources/basic_query.xs +44 -0
- package/lexer/tests/query/valid_sources/db_query.xs +77 -0
- package/lexer/tests/query/valid_sources/empty_query.xs +5 -0
- package/lexer/tests/query/valid_sources/header_query.xs +15 -0
- package/lexer/tests/table/basic_table.xs +17 -0
- package/lexer/tests/table/empty_table.xs +3 -0
- package/lexer/tests/table/table_lexer.spec.js +324 -0
- package/lexer/text.js +114 -0
- package/lexer/tokens.js +526 -0
- package/lexer/tool.js +39 -0
- package/lexer/util.js +113 -0
- package/lexer/utils.js +56 -0
- package/lexer/utils.spec.js +61 -0
- package/lexer/var.js +30 -0
- package/lexer/variables.js +217 -0
- package/lexer/workflow_test.js +42 -0
- package/lexer/workspace.js +23 -0
- package/lexer/workspace_trigger.js +42 -0
- package/lexer/zip.js +63 -0
- package/logic-assistant-script.js +8 -0
- package/onCheckError/onCheckError.js +43 -0
- package/onCompletion/contentAssist.js +183 -0
- package/onCompletion/contentAssist.spec.js +275 -0
- package/onCompletion/onCompletion.js +38 -0
- package/onDidChangeContent/onDidChangeContent.js +128 -0
- package/onHover/FilterMessageProvider.js +102 -0
- package/onHover/FilterMessageProvider.spec.js +85 -0
- package/onHover/FunctionMessageProvider.js +122 -0
- package/onHover/FunctionMessageProvider.spec.js +128 -0
- package/onHover/HoverMessageProvider.js +31 -0
- package/onHover/InputFilterMessageProvider.js +140 -0
- package/onHover/InputFilterMessageProvider.spec.js +329 -0
- package/onHover/InputVariableMessageProvider.js +55 -0
- package/onHover/QueryFilterMessageProvider.spec.js +164 -0
- package/onHover/filters.md +2852 -0
- package/onHover/functions.md +2617 -0
- package/onHover/inputFilters.md +271 -0
- package/onHover/onHover.js +40 -0
- package/onHover/onHoverDocument.js +64 -0
- package/onHover/onHoverDocument.spec.js +486 -0
- package/onHover/queryFilterMessageProvider.js +122 -0
- package/onHover/queryFilters.md +489 -0
- package/onSemanticCheck/highlight.js +45 -0
- package/onSemanticCheck/onSemanticCheck.js +25 -0
- package/onSemanticCheck/tokens.js +40 -0
- package/package.json +48 -0
- package/parser/addon_parser.js +90 -0
- package/parser/addon_parser.spec.js +88 -0
- package/parser/agent_parser.js +281 -0
- package/parser/agent_parser.spec.js +599 -0
- package/parser/agent_trigger_parser.js +138 -0
- package/parser/agent_trigger_parser.spec.js +525 -0
- package/parser/api_group_parser.js +143 -0
- package/parser/api_group_parser.spec.js +127 -0
- package/parser/attributes/columnDefaultValueAttribute.js +33 -0
- package/parser/attributes/columnDefaultValueAttribute.spec.js +49 -0
- package/parser/attributes/descriptionFieldAttribute.js +24 -0
- package/parser/attributes/descriptionFieldAttribute.spec.js +39 -0
- package/parser/attributes/disabledFieldAttribute.js +19 -0
- package/parser/attributes/disabledFieldAttribute.spec.js +34 -0
- package/parser/attributes/docsFieldAttribute.js +24 -0
- package/parser/attributes/docsFieldAttribute.spec.js +39 -0
- package/parser/attributes/inputFilterFn.js +71 -0
- package/parser/attributes/inputFilterFn.spec.js +39 -0
- package/parser/attributes/register.js +41 -0
- package/parser/attributes/sensitiveFieldAttribute.js +17 -0
- package/parser/attributes/sensitiveFieldAttribute.spec.js +39 -0
- package/parser/attributes/valueFieldAttribute.js +17 -0
- package/parser/attributes/valueFieldAttribute.spec.js +54 -0
- package/parser/attributes/valuesFieldAttribute.js +18 -0
- package/parser/attributes/valuesFieldAttribute.spec.js +44 -0
- package/parser/base_parser.js +249 -0
- package/parser/branch_parser.js +49 -0
- package/parser/branch_parser.spec.js +34 -0
- package/parser/clauses/agentClause.js +23 -0
- package/parser/clauses/agentClause.spec.js +34 -0
- package/parser/clauses/authClause.js +17 -0
- package/parser/clauses/authClause.spec.js +39 -0
- package/parser/clauses/cacheClause.js +32 -0
- package/parser/clauses/cacheClause.spec.js +103 -0
- package/parser/clauses/canonicalClause.js +23 -0
- package/parser/clauses/canonicalClause.spec.js +34 -0
- package/parser/clauses/channelClause.js +23 -0
- package/parser/clauses/channelClause.spec.js +34 -0
- package/parser/clauses/dbTableClause.js +23 -0
- package/parser/clauses/dbTableClause.spec.js +34 -0
- package/parser/clauses/flexibleStringClause.js +43 -0
- package/parser/clauses/historyClause.js +19 -0
- package/parser/clauses/historyClause.spec.js +53 -0
- package/parser/clauses/indexClause.js +36 -0
- package/parser/clauses/indexClause.spec.js +47 -0
- package/parser/clauses/inputClause.js +35 -0
- package/parser/clauses/inputClause.spec.js +79 -0
- package/parser/clauses/mcpServerClause.js +23 -0
- package/parser/clauses/mcpServerClause.spec.js +34 -0
- package/parser/clauses/middlewareClause.js +39 -0
- package/parser/clauses/middlewareClause.spec.js +161 -0
- package/parser/clauses/nakedStackFn.js +69 -0
- package/parser/clauses/nakedStackFn.spec.js +63 -0
- package/parser/clauses/outputClause.js +33 -0
- package/parser/clauses/register.js +50 -0
- package/parser/clauses/responseClause.js +17 -0
- package/parser/clauses/responseClause.spec.js +42 -0
- package/parser/clauses/scheduleClause.js +37 -0
- package/parser/clauses/scheduleClause.spec.js +71 -0
- package/parser/clauses/schemaClause.js +66 -0
- package/parser/clauses/schemaClause.spec.js +66 -0
- package/parser/clauses/stackClause.js +16 -0
- package/parser/clauses/testClause.js +73 -0
- package/parser/clauses/testClause.spec.js +78 -0
- package/parser/clauses/viewClause.js +49 -0
- package/parser/clauses/viewClause.spec.js +154 -0
- package/parser/definitions/arraySlice.js +70 -0
- package/parser/definitions/arraySlice.spec.js +49 -0
- package/parser/definitions/columnDefinition.js +139 -0
- package/parser/definitions/columnDefinition.spec.js +199 -0
- package/parser/definitions/dbLinkColumnDefinition.js +24 -0
- package/parser/definitions/dbLinkColumnDefinition.spec.js +45 -0
- package/parser/definitions/enumColumnDefinition.js +55 -0
- package/parser/definitions/enumColumnDefinition.spec.js +108 -0
- package/parser/definitions/filterDefinition.js +23 -0
- package/parser/definitions/filterDefinition.spec.js +43 -0
- package/parser/definitions/objectColumnDefinition.js +52 -0
- package/parser/definitions/objectColumnDefinition.spec.js +118 -0
- package/parser/definitions/register.js +28 -0
- package/parser/function_parser.js +123 -0
- package/parser/function_parser.spec.js +83 -0
- package/parser/functions/actionCallFn.js +41 -0
- package/parser/functions/actionCallFn.spec.js +51 -0
- package/parser/functions/addonCallFn.js +39 -0
- package/parser/functions/addonCallFn.spec.js +41 -0
- package/parser/functions/ai/aiAgentRunFn.js +40 -0
- package/parser/functions/ai/aiAgentRunFn.spec.js +94 -0
- package/parser/functions/ai/aiExternalMcpServerDetailsFn.js +28 -0
- package/parser/functions/ai/aiExternalMcpServerDetailsFn.spec.js +85 -0
- package/parser/functions/ai/aiExternalMcpToolListFn.js +28 -0
- package/parser/functions/ai/aiExternalMcpToolListFn.spec.js +85 -0
- package/parser/functions/ai/aiExternalMcpToolRunFn.js +30 -0
- package/parser/functions/ai/aiExternalMcpToolRunFn.spec.js +101 -0
- package/parser/functions/ai/register.js +24 -0
- package/parser/functions/aiFn.js +61 -0
- package/parser/functions/aiFn.spec.js +51 -0
- package/parser/functions/api/apiCallFn.js +49 -0
- package/parser/functions/api/apiCallFn.spec.js +60 -0
- package/parser/functions/api/apiLambdaFn.js +19 -0
- package/parser/functions/api/apiLambdaFn.spec.js +63 -0
- package/parser/functions/api/apiRealtimeEventFn.js +25 -0
- package/parser/functions/api/apiRealtimeEventFn.spec.js +82 -0
- package/parser/functions/api/apiRequestFn.js +47 -0
- package/parser/functions/api/apiRequestFn.spec.js +113 -0
- package/parser/functions/api/apiStreamFn.js +22 -0
- package/parser/functions/api/apiStreamFn.spec.js +44 -0
- package/parser/functions/api/register.js +19 -0
- package/parser/functions/api/webflowRequestFn.js +47 -0
- package/parser/functions/api/webflowRequestFn.spec.js +114 -0
- package/parser/functions/apiFn.js +24 -0
- package/parser/functions/array/arrayDifferenceFn.js +37 -0
- package/parser/functions/array/arrayDifferenceFn.spec.js +34 -0
- package/parser/functions/array/arrayEveryFn.js +13 -0
- package/parser/functions/array/arrayFilterCountFn.js +14 -0
- package/parser/functions/array/arrayFilterFn.js +14 -0
- package/parser/functions/array/arrayFindFn.js +14 -0
- package/parser/functions/array/arrayFindFn.spec.js +44 -0
- package/parser/functions/array/arrayFindIndexFn.js +14 -0
- package/parser/functions/array/arrayGroupByFn.js +36 -0
- package/parser/functions/array/arrayGroupByFn.spec.js +41 -0
- package/parser/functions/array/arrayHasFn.js +14 -0
- package/parser/functions/array/arrayIntersectionFn.js +37 -0
- package/parser/functions/array/arrayIntersectionFn.spec.js +22 -0
- package/parser/functions/array/arrayMapFn.js +36 -0
- package/parser/functions/array/arrayMapFn.spec.js +37 -0
- package/parser/functions/array/arrayMergeFn.js +17 -0
- package/parser/functions/array/arrayNoValueAs.js +31 -0
- package/parser/functions/array/arrayNoValueAs.spec.js +56 -0
- package/parser/functions/array/arrayPartitionFn.js +19 -0
- package/parser/functions/array/arrayPartitionFn.spec.js +29 -0
- package/parser/functions/array/arrayPopFn.js +17 -0
- package/parser/functions/array/arrayPushFn.js +14 -0
- package/parser/functions/array/arrayShiftFn.js +15 -0
- package/parser/functions/array/arrayUnionFn.js +37 -0
- package/parser/functions/array/arrayUnionFn.spec.js +22 -0
- package/parser/functions/array/arrayUnshiftFn.js +14 -0
- package/parser/functions/array/arrayValueIfAs.js +51 -0
- package/parser/functions/array/arrayValueIfAs.spec.js +54 -0
- package/parser/functions/array/arrayValueOnly.js +40 -0
- package/parser/functions/array/arrayValueOnly.spec.js +61 -0
- package/parser/functions/array/register.js +49 -0
- package/parser/functions/array/valueAttrOnly.js +47 -0
- package/parser/functions/array/valueAttrOnly.spec.js +61 -0
- package/parser/functions/arrayFn.js +33 -0
- package/parser/functions/cloud/cloudAlgoliaFn.js +18 -0
- package/parser/functions/cloud/cloudAlgoliaRequestFn.js +26 -0
- package/parser/functions/cloud/cloudAlgoliaRequestFn.spec.js +30 -0
- package/parser/functions/cloud/cloudAwsFn.js +19 -0
- package/parser/functions/cloud/cloudAwsOpenSearchFn.js +19 -0
- package/parser/functions/cloud/cloudAwsS3Fn.js +22 -0
- package/parser/functions/cloud/cloudAwsS3Fn.spec.js +21 -0
- package/parser/functions/cloud/cloudAzureFn.js +18 -0
- package/parser/functions/cloud/cloudDeleteFileFn.js +23 -0
- package/parser/functions/cloud/cloudDeleteFileFn.spec.js +25 -0
- package/parser/functions/cloud/cloudElasticSearchFn.js +19 -0
- package/parser/functions/cloud/cloudGetFileInfoFn.js +24 -0
- package/parser/functions/cloud/cloudGetFileInfoFn.spec.js +25 -0
- package/parser/functions/cloud/cloudGoogleFn.js +18 -0
- package/parser/functions/cloud/cloudListDirectoryFn.js +24 -0
- package/parser/functions/cloud/cloudListDirectoryFn.spec.js +26 -0
- package/parser/functions/cloud/cloudReadFileFn.js +24 -0
- package/parser/functions/cloud/cloudReadFileFn.spec.js +25 -0
- package/parser/functions/cloud/cloudSearchDocumentFn.js +24 -0
- package/parser/functions/cloud/cloudSearchDocumentFn.spec.js +28 -0
- package/parser/functions/cloud/cloudSearchQueryFn.js +24 -0
- package/parser/functions/cloud/cloudSearchQueryFn.spec.js +32 -0
- package/parser/functions/cloud/cloudSearchRequestFn.js +24 -0
- package/parser/functions/cloud/cloudSearchRequestFn.spec.js +32 -0
- package/parser/functions/cloud/cloudSignUrlFn.js +24 -0
- package/parser/functions/cloud/cloudSignUrlFn.spec.js +26 -0
- package/parser/functions/cloud/cloudStorageFn.js +23 -0
- package/parser/functions/cloud/cloudStorageFn.spec.js +21 -0
- package/parser/functions/cloud/cloudUploadFileFn.js +24 -0
- package/parser/functions/cloud/cloudUploadFileFn.spec.js +29 -0
- package/parser/functions/cloud/register.js +61 -0
- package/parser/functions/cloudFn.js +21 -0
- package/parser/functions/controlFn.js +34 -0
- package/parser/functions/controls/awaitFn.js +21 -0
- package/parser/functions/controls/awaitFn.spec.js +48 -0
- package/parser/functions/controls/conditionalElifFn.js +19 -0
- package/parser/functions/controls/conditionalElseFn.js +13 -0
- package/parser/functions/controls/conditionalFn.js +62 -0
- package/parser/functions/controls/conditionalFn.spec.js +167 -0
- package/parser/functions/controls/conditionalIfFn.js +19 -0
- package/parser/functions/controls/forEachFn.js +70 -0
- package/parser/functions/controls/forEachFn.spec.js +101 -0
- package/parser/functions/controls/forFn.js +55 -0
- package/parser/functions/controls/forFn.spec.js +85 -0
- package/parser/functions/controls/functionCallFn.js +38 -0
- package/parser/functions/controls/functionRunFn.js +40 -0
- package/parser/functions/controls/functionRunFn.spec.js +77 -0
- package/parser/functions/controls/groupFn.js +42 -0
- package/parser/functions/controls/groupFn.spec.js +63 -0
- package/parser/functions/controls/preconditionFn.js +40 -0
- package/parser/functions/controls/preconditionFn.spec.js +97 -0
- package/parser/functions/controls/register.js +45 -0
- package/parser/functions/controls/returnFn.js +21 -0
- package/parser/functions/controls/returnFn.spec.js +44 -0
- package/parser/functions/controls/switchCaseFn.js +22 -0
- package/parser/functions/controls/switchDefaultFn.js +13 -0
- package/parser/functions/controls/switchFn.js +50 -0
- package/parser/functions/controls/switchFn.spec.js +104 -0
- package/parser/functions/controls/taskCallFn.js +31 -0
- package/parser/functions/controls/throwFn.js +21 -0
- package/parser/functions/controls/throwFn.spec.js +56 -0
- package/parser/functions/controls/tryCatchFn.js +67 -0
- package/parser/functions/controls/tryCatchFn.spec.js +180 -0
- package/parser/functions/controls/whileFn.js +52 -0
- package/parser/functions/controls/whileFn.spec.js +94 -0
- package/parser/functions/db/dbAddFn.js +38 -0
- package/parser/functions/db/dbAddFn.spec.js +72 -0
- package/parser/functions/db/dbAddOrEditFn.js +39 -0
- package/parser/functions/db/dbAddOrEditFn.spec.js +97 -0
- package/parser/functions/db/dbAddonAttr.js +17 -0
- package/parser/functions/db/dbBulkAddFn.js +54 -0
- package/parser/functions/db/dbBulkAddFn.spec.js +94 -0
- package/parser/functions/db/dbBulkDeleteFn.js +35 -0
- package/parser/functions/db/dbBulkDeleteFn.spec.js +28 -0
- package/parser/functions/db/dbBulkFn.js +20 -0
- package/parser/functions/db/dbBulkPatchFn.js +35 -0
- package/parser/functions/db/dbBulkPatchFn.spec.js +42 -0
- package/parser/functions/db/dbBulkUpdateFn.js +35 -0
- package/parser/functions/db/dbBulkUpdateFn.spec.js +42 -0
- package/parser/functions/db/dbDelFn.js +34 -0
- package/parser/functions/db/dbDelFn.spec.js +62 -0
- package/parser/functions/db/dbDirectQueryFn.js +37 -0
- package/parser/functions/db/dbDirectQueryFn.spec.js +104 -0
- package/parser/functions/db/dbEditFn.js +40 -0
- package/parser/functions/db/dbEditFn.spec.js +122 -0
- package/parser/functions/db/dbExternalDirectQueryFn.js +29 -0
- package/parser/functions/db/dbExternalDirectQueryFn.spec.js +103 -0
- package/parser/functions/db/dbExternalFn.js +29 -0
- package/parser/functions/db/dbGetFn.js +40 -0
- package/parser/functions/db/dbGetFn.spec.js +117 -0
- package/parser/functions/db/dbHasFn.js +34 -0
- package/parser/functions/db/dbHasFn.spec.js +62 -0
- package/parser/functions/db/dbPatchFn.js +39 -0
- package/parser/functions/db/dbPatchFn.spec.js +88 -0
- package/parser/functions/db/dbQueryFn.js +73 -0
- package/parser/functions/db/dbQueryFn.spec.js +333 -0
- package/parser/functions/db/dbSchemaFn.js +25 -0
- package/parser/functions/db/dbSchemaFn.spec.js +42 -0
- package/parser/functions/db/dbSetDatasourceFn.js +18 -0
- package/parser/functions/db/dbSetDatasourceFn.spec.js +44 -0
- package/parser/functions/db/dbTransactionFn.js +43 -0
- package/parser/functions/db/dbTransactionFn.spec.js +63 -0
- package/parser/functions/db/dbTruncateFn.js +33 -0
- package/parser/functions/db/dbTruncateFn.spec.js +42 -0
- package/parser/functions/db/register.js +52 -0
- package/parser/functions/db/schema.js +8 -0
- package/parser/functions/dbFn.js +31 -0
- package/parser/functions/debug/debugLogFn.js +21 -0
- package/parser/functions/debug/debugLogFn.spec.js +44 -0
- package/parser/functions/debug/debugStopFn.js +21 -0
- package/parser/functions/debug/debugStopFn.spec.js +44 -0
- package/parser/functions/debug/register.js +11 -0
- package/parser/functions/debugFn.js +18 -0
- package/parser/functions/expect/register.js +44 -0
- package/parser/functions/expect/unitExpectToBeWithinFn.js +28 -0
- package/parser/functions/expect/unitExpectToBeWithinFn.spec.js +61 -0
- package/parser/functions/expect/unitExpectToThrowFn.js +15 -0
- package/parser/functions/expect/unitExpectToThrowFn.spec.js +40 -0
- package/parser/functions/expect/unitExpectWithArgumentsFn.js +49 -0
- package/parser/functions/expect/unitExpectWithArgumentsFn.spec.js +341 -0
- package/parser/functions/expect/unitExpectWithoutArgumentsFn.js +42 -0
- package/parser/functions/expect/unitExpectWithoutArgumentsFn.spec.js +69 -0
- package/parser/functions/expect/workflowExpectToBeWithinFn.js +22 -0
- package/parser/functions/expect/workflowExpectToBeWithinFn.spec.js +70 -0
- package/parser/functions/expect/workflowExpectToThrowFn.js +21 -0
- package/parser/functions/expect/workflowExpectToThrowFn.spec.js +56 -0
- package/parser/functions/expect/workflowExpectWithArgumentsFn.js +40 -0
- package/parser/functions/expect/workflowExpectWithArgumentsFn.spec.js +301 -0
- package/parser/functions/expect/workflowExpectWithoutArgumentsFn.js +39 -0
- package/parser/functions/expect/workflowExpectWithoutArgumentsFn.spec.js +87 -0
- package/parser/functions/math/allMathFn.js +64 -0
- package/parser/functions/math/allMathFn.spec.js +100 -0
- package/parser/functions/math/register.js +9 -0
- package/parser/functions/mathFn.js +15 -0
- package/parser/functions/middlewareCallFn.js +43 -0
- package/parser/functions/middlewareCallFn.spec.js +44 -0
- package/parser/functions/object/objectEntriesFn.js +22 -0
- package/parser/functions/object/objectEntriesFn.spec.js +44 -0
- package/parser/functions/object/objectKeysFn.js +22 -0
- package/parser/functions/object/objectKeysFn.spec.js +44 -0
- package/parser/functions/object/objectValuesFn.js +22 -0
- package/parser/functions/object/objectValuesFn.spec.js +44 -0
- package/parser/functions/object/register.js +13 -0
- package/parser/functions/objectFn.js +22 -0
- package/parser/functions/redis/redisCountFn.js +26 -0
- package/parser/functions/redis/redisCountFn.spec.js +58 -0
- package/parser/functions/redis/redisDecrFn.js +28 -0
- package/parser/functions/redis/redisDecrFn.spec.js +47 -0
- package/parser/functions/redis/redisDelFn.js +25 -0
- package/parser/functions/redis/redisDelFn.spec.js +58 -0
- package/parser/functions/redis/redisGetFn.js +26 -0
- package/parser/functions/redis/redisGetFn.spec.js +67 -0
- package/parser/functions/redis/redisHasFn.js +26 -0
- package/parser/functions/redis/redisHasFn.spec.js +58 -0
- package/parser/functions/redis/redisIncrFn.js +28 -0
- package/parser/functions/redis/redisIncrFn.spec.js +74 -0
- package/parser/functions/redis/redisKeysFn.js +26 -0
- package/parser/functions/redis/redisKeysFn.spec.js +67 -0
- package/parser/functions/redis/redisPopFn.js +26 -0
- package/parser/functions/redis/redisPopFn.spec.js +67 -0
- package/parser/functions/redis/redisPushFn.js +28 -0
- package/parser/functions/redis/redisPushFn.spec.js +71 -0
- package/parser/functions/redis/redisRangeFn.js +30 -0
- package/parser/functions/redis/redisRangeFn.spec.js +80 -0
- package/parser/functions/redis/redisRateLimitFn.js +32 -0
- package/parser/functions/redis/redisRateLimitFn.spec.js +87 -0
- package/parser/functions/redis/redisRemoveFn.js +29 -0
- package/parser/functions/redis/redisRemoveFn.spec.js +65 -0
- package/parser/functions/redis/redisSetFn.js +29 -0
- package/parser/functions/redis/redisSetFn.spec.js +89 -0
- package/parser/functions/redis/redisShiftFn.js +26 -0
- package/parser/functions/redis/redisShiftFn.spec.js +67 -0
- package/parser/functions/redis/redisUnshiftFn.js +28 -0
- package/parser/functions/redis/redisUnshiftFn.spec.js +73 -0
- package/parser/functions/redis/register.js +37 -0
- package/parser/functions/redisFn.js +31 -0
- package/parser/functions/register.js +91 -0
- package/parser/functions/schema/register.js +30 -0
- package/parser/functions/schema/schemaFn.js +173 -0
- package/parser/functions/schema/schemaFn.spec.js +92 -0
- package/parser/functions/schema/schemaParseArrayFn.js +47 -0
- package/parser/functions/schema/schemaParseArrayFn.spec.js +134 -0
- package/parser/functions/schema/schemaParseAttributeFn.js +194 -0
- package/parser/functions/schema/schemaParseAttributeFn.spec.js +281 -0
- package/parser/functions/schema/schemaParseConstantFn.js +136 -0
- package/parser/functions/schema/schemaParseConstantFn.spec.js +122 -0
- package/parser/functions/schema/schemaParseEnum.js +52 -0
- package/parser/functions/schema/schemaParseEnum.spec.js +47 -0
- package/parser/functions/schema/schemaParseImmutableFn.js +134 -0
- package/parser/functions/schema/schemaParseImmutableFn.spec.js +99 -0
- package/parser/functions/schema/schemaParseObjectFn.js +171 -0
- package/parser/functions/schema/schemaParseObjectFn.spec.js +223 -0
- package/parser/functions/schema/utils.js +136 -0
- package/parser/functions/schema/utils.spec.js +27 -0
- package/parser/functions/security/register.js +64 -0
- package/parser/functions/security/securityCheckPasswordFn.js +24 -0
- package/parser/functions/security/securityCheckPasswordFn.spec.js +22 -0
- package/parser/functions/security/securityCreateAuthTokenFn.js +24 -0
- package/parser/functions/security/securityCreateAuthTokenFn.spec.js +24 -0
- package/parser/functions/security/securityCreateCurveKeyFn.js +19 -0
- package/parser/functions/security/securityCreateCurveKeyFn.spec.js +22 -0
- package/parser/functions/security/securityCreatePasswordFn.js +26 -0
- package/parser/functions/security/securityCreatePasswordFn.spec.js +26 -0
- package/parser/functions/security/securityCreateRsaKeyFn.js +19 -0
- package/parser/functions/security/securityCreateRsaKeyFn.spec.js +22 -0
- package/parser/functions/security/securityCreateSecretKeyFn.js +24 -0
- package/parser/functions/security/securityCreateSecretKeyFn.spec.js +22 -0
- package/parser/functions/security/securityCreateUuidFn.js +26 -0
- package/parser/functions/security/securityCreateUuidFn.spec.js +27 -0
- package/parser/functions/security/securityDecryptFn.js +24 -0
- package/parser/functions/security/securityDecryptFn.spec.js +24 -0
- package/parser/functions/security/securityEncryptFn.js +24 -0
- package/parser/functions/security/securityEncryptFn.spec.js +24 -0
- package/parser/functions/security/securityJweDecodeFn.js +24 -0
- package/parser/functions/security/securityJweDecodeFn.spec.js +26 -0
- package/parser/functions/security/securityJweEncodeFn.js +24 -0
- package/parser/functions/security/securityJweEncodeFn.spec.js +26 -0
- package/parser/functions/security/securityJwsDecodeFn.js +24 -0
- package/parser/functions/security/securityJwsDecodeFn.spec.js +25 -0
- package/parser/functions/security/securityJwsEncodeFn.js +24 -0
- package/parser/functions/security/securityJwsEncodeFn.spec.js +25 -0
- package/parser/functions/security/securityRandomBytesFn.js +24 -0
- package/parser/functions/security/securityRandomBytesFn.spec.js +21 -0
- package/parser/functions/security/securityRandomNumberFn.js +24 -0
- package/parser/functions/security/securityRandomNumberFn.spec.js +22 -0
- package/parser/functions/securityFn.js +30 -0
- package/parser/functions/storage/register.js +44 -0
- package/parser/functions/storage/storageCreateAttachmentFn.js +25 -0
- package/parser/functions/storage/storageCreateAttachmentFn.spec.js +87 -0
- package/parser/functions/storage/storageCreateAudioFn.js +29 -0
- package/parser/functions/storage/storageCreateAudioFn.spec.js +98 -0
- package/parser/functions/storage/storageCreateFileResourceFn.js +19 -0
- package/parser/functions/storage/storageCreateFileResourceFn.spec.js +72 -0
- package/parser/functions/storage/storageCreateImageFn.js +25 -0
- package/parser/functions/storage/storageCreateImageFn.spec.js +98 -0
- package/parser/functions/storage/storageCreateVideoFn.js +29 -0
- package/parser/functions/storage/storageCreateVideoFn.spec.js +99 -0
- package/parser/functions/storage/storageDeleteFileFn.js +17 -0
- package/parser/functions/storage/storageDeleteFileFn.spec.js +67 -0
- package/parser/functions/storage/storageReadFileResourceFn.js +19 -0
- package/parser/functions/storage/storageReadFileResourceFn.spec.js +60 -0
- package/parser/functions/storage/storageSignPrivateUrlFn.js +19 -0
- package/parser/functions/storage/storageSignPrivateUrlFn.spec.js +72 -0
- package/parser/functions/storageFn.js +24 -0
- package/parser/functions/stream/register.js +13 -0
- package/parser/functions/stream/streamFromCsvFn.js +20 -0
- package/parser/functions/stream/streamFromCsvFn.spec.js +69 -0
- package/parser/functions/stream/streamFromJsonlFn.js +21 -0
- package/parser/functions/stream/streamFromJsonlFn.spec.js +47 -0
- package/parser/functions/stream/streamFromRequestFn.js +50 -0
- package/parser/functions/stream/streamFromRequestFn.spec.js +103 -0
- package/parser/functions/streamFn.js +19 -0
- package/parser/functions/text/allTextWithReturnValueFn.js +36 -0
- package/parser/functions/text/allTextWithReturnValueFn.spec.js +100 -0
- package/parser/functions/text/allTextWithoutReturnValueFn.js +34 -0
- package/parser/functions/text/allTextWithoutReturnValueFn.spec.js +122 -0
- package/parser/functions/text/register.js +17 -0
- package/parser/functions/textFn.js +33 -0
- package/parser/functions/toolCallFn.js +40 -0
- package/parser/functions/toolCallFn.spec.js +28 -0
- package/parser/functions/unitExpectFn.js +20 -0
- package/parser/functions/unitExpectFn.spec.js +21 -0
- package/parser/functions/util/register.js +29 -0
- package/parser/functions/util/utilGeoDistanceFn.js +30 -0
- package/parser/functions/util/utilGeoDistanceFn.spec.js +79 -0
- package/parser/functions/util/utilGetAllInputFn.js +20 -0
- package/parser/functions/util/utilGetAllInputFn.spec.js +33 -0
- package/parser/functions/util/utilGetEnvFn.js +20 -0
- package/parser/functions/util/utilGetEnvFn.spec.js +33 -0
- package/parser/functions/util/utilGetRawInputFn.js +25 -0
- package/parser/functions/util/utilGetRawInputFn.spec.js +55 -0
- package/parser/functions/util/utilGetVarsFn.js +20 -0
- package/parser/functions/util/utilGetVarsFn.spec.js +33 -0
- package/parser/functions/util/utilIpLookupFn.js +22 -0
- package/parser/functions/util/utilIpLookupFn.spec.js +37 -0
- package/parser/functions/util/utilPostProcessFn.js +43 -0
- package/parser/functions/util/utilPostProcessFn.spec.js +63 -0
- package/parser/functions/util/utilSendEmailFn.js +108 -0
- package/parser/functions/util/utilSendEmailFn.spec.js +62 -0
- package/parser/functions/util/utilSetHeaderFn.js +22 -0
- package/parser/functions/util/utilSetHeaderFn.spec.js +48 -0
- package/parser/functions/util/utilSleepFn.js +19 -0
- package/parser/functions/util/utilSleepFn.spec.js +44 -0
- package/parser/functions/util/utilTemplateFn.js +19 -0
- package/parser/functions/util/utilTemplateFn.spec.js +78 -0
- package/parser/functions/utilFn.js +39 -0
- package/parser/functions/varFn.js +51 -0
- package/parser/functions/varFn.spec.js +173 -0
- package/parser/functions/webflowFn.js +19 -0
- package/parser/functions/workflowExpectFn.js +20 -0
- package/parser/functions/zip/register.js +20 -0
- package/parser/functions/zip/zipAddToArchiveFn.js +31 -0
- package/parser/functions/zip/zipAddToArchiveFn.spec.js +78 -0
- package/parser/functions/zip/zipCreateArchiveFn.js +29 -0
- package/parser/functions/zip/zipCreateArchiveFn.spec.js +53 -0
- package/parser/functions/zip/zipDeleteFromArchiveFn.js +23 -0
- package/parser/functions/zip/zipDeleteFromArchiveFn.spec.js +69 -0
- package/parser/functions/zip/zipExtractFn.js +23 -0
- package/parser/functions/zip/zipExtractFn.spec.js +52 -0
- package/parser/functions/zip/zipViewContentsFn.js +24 -0
- package/parser/functions/zip/zipViewContentsFn.spec.js +52 -0
- package/parser/functions/zipFn.js +21 -0
- package/parser/generic/arrayOfObjectAttrReq.js +47 -0
- package/parser/generic/arrayOfObjectAttrReq.spec.js +254 -0
- package/parser/generic/arrayOfStringLiterals.js +45 -0
- package/parser/generic/arrayOfStringLiterals.spec.js +56 -0
- package/parser/generic/arrayWithValues.js +35 -0
- package/parser/generic/arrayWithValues.spec.js +72 -0
- package/parser/generic/asVariable.js +23 -0
- package/parser/generic/asVariable.spec.js +37 -0
- package/parser/generic/assignableVariableAs.js +27 -0
- package/parser/generic/assignableVariableAs.spec.js +52 -0
- package/parser/generic/assignableVariableProperty.js +52 -0
- package/parser/generic/assignableVariableProperty.spec.js +52 -0
- package/parser/generic/booleanValue.js +22 -0
- package/parser/generic/bracketAccessor.js +53 -0
- package/parser/generic/castedValue.js +14 -0
- package/parser/generic/castedValue.spec.js +29 -0
- package/parser/generic/chainedIdentifier.js +48 -0
- package/parser/generic/chainedIdentifier.spec.js +89 -0
- package/parser/generic/completeAuthVariable.js +13 -0
- package/parser/generic/completeAuthVariable.spec.js +23 -0
- package/parser/generic/completeEnvVariable.js +79 -0
- package/parser/generic/completeEnvVariable.spec.js +94 -0
- package/parser/generic/completeErrorVariable.js +39 -0
- package/parser/generic/completeErrorVariable.spec.js +17 -0
- package/parser/generic/completeInputVariable.js +42 -0
- package/parser/generic/completeInputVariable.spec.js +53 -0
- package/parser/generic/enumValue.js +23 -0
- package/parser/generic/expressionFn.js +415 -0
- package/parser/generic/expressionFn.spec.js +588 -0
- package/parser/generic/filterFn.js +48 -0
- package/parser/generic/filterFn.spec.js +47 -0
- package/parser/generic/filterNames.js +381 -0
- package/parser/generic/functionAttrReq.js +279 -0
- package/parser/generic/functionAttrReq.spec.js +353 -0
- package/parser/generic/longFormVariable.js +46 -0
- package/parser/generic/longFormVariable.spec.js +25 -0
- package/parser/generic/minimalFnBody.js +24 -0
- package/parser/generic/minimalFnBody.spec.js +47 -0
- package/parser/generic/mockAttribute.js +21 -0
- package/parser/generic/mockAttribute.spec.js +57 -0
- package/parser/generic/multilineFilterFn.js +27 -0
- package/parser/generic/multilineFilterFn.spec.js +51 -0
- package/parser/generic/numberValue.js +27 -0
- package/parser/generic/objectAttrReq.js +243 -0
- package/parser/generic/objectAttrReq.spec.js +412 -0
- package/parser/generic/objectWithAttributes.js +74 -0
- package/parser/generic/objectWithAttributes.spec.js +147 -0
- package/parser/generic/optionalCommentBlock.js +32 -0
- package/parser/generic/pipedFilter.js +20 -0
- package/parser/generic/register.js +124 -0
- package/parser/generic/requiredValueFnBody.js +40 -0
- package/parser/generic/requiredValueFnBody.spec.js +56 -0
- package/parser/generic/shortFormVariable.js +17 -0
- package/parser/generic/shortFormVariable.spec.js +27 -0
- package/parser/generic/stringArray.js +33 -0
- package/parser/generic/stringArray.spec.js +55 -0
- package/parser/generic/tagsAttribute.js +14 -0
- package/parser/generic/tagsAttribute.spec.js +47 -0
- package/parser/generic/utils.js +14 -0
- package/parser/generic/valueExpressionForResponse.js +51 -0
- package/parser/generic/variableOnly.js +13 -0
- package/parser/generic/variableOnly.spec.js +47 -0
- package/parser/mcp_server_parser.js +130 -0
- package/parser/mcp_server_parser.spec.js +478 -0
- package/parser/mcp_server_trigger_parser.js +142 -0
- package/parser/mcp_server_trigger_parser.spec.js +396 -0
- package/parser/metadata/columnMetadataDefinition.js +32 -0
- package/parser/metadata/columnMetadataDefinition.spec.js +47 -0
- package/parser/metadata/enumColumnMetadataDefinition.js +46 -0
- package/parser/metadata/enumColumnMetadataDefinition.spec.js +59 -0
- package/parser/metadata/objectColumnMetadataDefinition.js +26 -0
- package/parser/metadata/register.js +22 -0
- package/parser/middleware_parser.js +137 -0
- package/parser/middleware_parser.spec.js +203 -0
- package/parser/parser.js +87 -0
- package/parser/query_parser.js +183 -0
- package/parser/query_parser.spec.js +141 -0
- package/parser/realtime_channel_parser.js +45 -0
- package/parser/realtime_channel_parser.spec.js +20 -0
- package/parser/realtime_trigger_parser.js +141 -0
- package/parser/realtime_trigger_parser.spec.js +469 -0
- package/parser/register.js +88 -0
- package/parser/table_parser.js +126 -0
- package/parser/table_parser.spec.js +138 -0
- package/parser/table_trigger_parser.js +144 -0
- package/parser/table_trigger_parser.spec.js +449 -0
- package/parser/task_parser.js +116 -0
- package/parser/task_parser.spec.js +83 -0
- package/parser/test_parser.js +39 -0
- package/parser/tests/agent/agent_parser.spec.js +52 -0
- package/parser/tests/agent/valid_sources/customer_servier_agent.xs +45 -0
- package/parser/tests/api_group/api_group_parser.spec.js +52 -0
- package/parser/tests/api_group/valid_sources/api_group_history.xs +4 -0
- package/parser/tests/api_group/valid_sources/basic_api_group.xs +3 -0
- package/parser/tests/api_group/valid_sources/complete_api_group.xs +7 -0
- package/parser/tests/api_group/valid_sources/protected_api_group.xs +7 -0
- package/parser/tests/function/function_parser.spec.js +52 -0
- package/parser/tests/function/valid_sources/all_controls.xs +68 -0
- package/parser/tests/function/valid_sources/all_query_return_types.xs +227 -0
- package/parser/tests/function/valid_sources/all_storage.xs +45 -0
- package/parser/tests/function/valid_sources/discord_poll_send_to_slack.xs +133 -0
- package/parser/tests/function/valid_sources/expression_in_response.xs +22 -0
- package/parser/tests/function/valid_sources/filter_by_value.xs +55 -0
- package/parser/tests/function/valid_sources/filter_query.xs +82 -0
- package/parser/tests/function/valid_sources/large_regex.xs +13 -0
- package/parser/tests/function/valid_sources/ledash_ends_with.xs +90 -0
- package/parser/tests/function/valid_sources/multiline_description.xs +28 -0
- package/parser/tests/function/valid_sources/multiline_expr.xs +41 -0
- package/parser/tests/function/valid_sources/set_theory_fn.xs +129 -0
- package/parser/tests/function/valid_sources/simple_unit_test.xs +33 -0
- package/parser/tests/function/valid_sources/valid_officer.xs +57 -0
- package/parser/tests/function/valid_sources/webflow.xs +18 -0
- package/parser/tests/query/query_parser.spec.js +54 -0
- package/parser/tests/query/valid_sources/all_basics.xs +51 -0
- package/parser/tests/query/valid_sources/all_cloud.xs +141 -0
- package/parser/tests/query/valid_sources/all_db.xs +102 -0
- package/parser/tests/query/valid_sources/all_external_db.xs +43 -0
- package/parser/tests/query/valid_sources/all_keywords.xs +65 -0
- package/parser/tests/query/valid_sources/all_math.xs +53 -0
- package/parser/tests/query/valid_sources/all_object.xs +25 -0
- package/parser/tests/query/valid_sources/all_redis.xs +106 -0
- package/parser/tests/query/valid_sources/all_security.xs +105 -0
- package/parser/tests/query/valid_sources/all_stream.xs +69 -0
- package/parser/tests/query/valid_sources/all_text.xs +54 -0
- package/parser/tests/query/valid_sources/all_util.xs +66 -0
- package/parser/tests/query/valid_sources/all_zip.xs +39 -0
- package/parser/tests/query/valid_sources/arrays.xs +33 -0
- package/parser/tests/query/valid_sources/disabled_response.xs +27 -0
- package/parser/tests/query/valid_sources/multiline_lambda_GET.xs +50 -0
- package/parser/tests/query/valid_sources/mutliline_query.xs +140 -0
- package/parser/tests/query/valid_sources/patch_expression_multiline.xs +27 -0
- package/parser/tests/query/valid_sources/query_cache.xs +34 -0
- package/parser/tests/query/valid_sources/query_example.xs +43 -0
- package/parser/tests/query/valid_sources/query_mini.xs +11 -0
- package/parser/tests/query/valid_sources/query_rich_inputs.xs +32 -0
- package/parser/tests/query/valid_sources/simple_unit_test.xs +33 -0
- package/parser/tests/query/valid_sources/test_with_slashes.xs +22 -0
- package/parser/tests/query/valid_sources/with_unit_test.xs +97 -0
- package/parser/tests/table/table_parser.spec.js +52 -0
- package/parser/tests/table/valid_sources/account.xs +31 -0
- package/parser/tests/table/valid_sources/all_basic_columns.xs +44 -0
- package/parser/tests/table/valid_sources/basic_table.xs +15 -0
- package/parser/tests/table/valid_sources/empty_object.xs +17 -0
- package/parser/tests/table/valid_sources/empty_table.xs +3 -0
- package/parser/tests/table/valid_sources/multiline_index.xs +33 -0
- package/parser/tests/table/valid_sources/relation.xs +44 -0
- package/parser/tests/table/valid_sources/rich_columns.xs +28 -0
- package/parser/tests/table/valid_sources/table_with_comments.xs +17 -0
- package/parser/tests/table/valid_sources/table_with_search_index.xs +31 -0
- package/parser/tests/table/valid_sources/view_table.xs +62 -0
- package/parser/tests/task/task_parser.spec.js +53 -0
- package/parser/tests/task/valid_sources/active_event.xs +11 -0
- package/parser/tests/task/valid_sources/all_events.xs +17 -0
- package/parser/tests/task/valid_sources/daily_sales_report.xs +56 -0
- package/parser/tests/task/valid_sources/inactive_event.xs +11 -0
- package/parser/tests/workflow_test/valid_sources/basic_workflow_test.xs +13 -0
- package/parser/tests/workflow_test/workflow_test_parser.spec.js +52 -0
- package/parser/tool_parser.js +121 -0
- package/parser/tool_parser.spec.js +102 -0
- package/parser/workflow_test_parser.js +73 -0
- package/parser/workflow_test_parser.spec.js +71 -0
- package/parser/workspace_parser.js +38 -0
- package/parser/workspace_parser.spec.js +142 -0
- package/parser/workspace_trigger_parser.js +118 -0
- package/parser/workspace_trigger_parser.spec.js +332 -0
- package/profile-parser.js +214 -0
- package/server.js +59 -0
- package/toTmLanguage.js +75 -0
- package/utils.js +55 -0
- package/utils.spec.js +277 -0
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { HoverMessageProvider } from "./HoverMessageProvider.js";
|
|
2
|
+
|
|
3
|
+
// read the `filters.md` file to gather all the filters
|
|
4
|
+
// each filter starts with `# filter_name`
|
|
5
|
+
export class FilterMessageProvider extends HoverMessageProvider {
|
|
6
|
+
/**
|
|
7
|
+
* @param {string} filtersMd
|
|
8
|
+
*/
|
|
9
|
+
constructor(filtersMd) {
|
|
10
|
+
super();
|
|
11
|
+
this.parseFilters(filtersMd);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* parser a markdown documentation text to extract all the filters
|
|
16
|
+
* and their documentation
|
|
17
|
+
* @param {string} content
|
|
18
|
+
*/
|
|
19
|
+
parseFilters(content) {
|
|
20
|
+
this.__filterDoc = {};
|
|
21
|
+
let body = [];
|
|
22
|
+
let fn = "";
|
|
23
|
+
for (let line of content.split("\n")) {
|
|
24
|
+
if (line.startsWith("#")) {
|
|
25
|
+
// every filter name starts with a '#'
|
|
26
|
+
if (fn) {
|
|
27
|
+
this.__filterDoc[fn] = body.join("\n");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// remove the leading '#' and trim
|
|
31
|
+
fn = line.slice(1).trim();
|
|
32
|
+
|
|
33
|
+
// if the function starts with '!' it's deprecated
|
|
34
|
+
// # !old_filter:new_filter
|
|
35
|
+
if (fn.startsWith("!")) {
|
|
36
|
+
const [deprecatedFilter, recommended] = fn
|
|
37
|
+
.slice(1)
|
|
38
|
+
.split(":")
|
|
39
|
+
.map((p) => p.trim())
|
|
40
|
+
.filter((p) => p);
|
|
41
|
+
if (recommended) {
|
|
42
|
+
this.__filterDoc[
|
|
43
|
+
deprecatedFilter
|
|
44
|
+
] = `\`${deprecatedFilter}\` is deprecated, use \`${recommended}\` instead.`;
|
|
45
|
+
}
|
|
46
|
+
fn = "";
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
body = [];
|
|
50
|
+
} else {
|
|
51
|
+
body.push(line);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* find a filter by its index in the token stream
|
|
58
|
+
* @param {int} index
|
|
59
|
+
* @param {import("chevrotain").[]} tokens
|
|
60
|
+
* @returns {string|null} the filter name or null if not found
|
|
61
|
+
*/
|
|
62
|
+
findFilter(index, tokens) {
|
|
63
|
+
const token = tokens[index];
|
|
64
|
+
|
|
65
|
+
// Check if it's an Identifier token or has Identifier as a category/longer_alt
|
|
66
|
+
const isIdentifierLike =
|
|
67
|
+
token.tokenType.name === "Identifier" ||
|
|
68
|
+
(token.tokenType.LONGER_ALT &&
|
|
69
|
+
token.tokenType.LONGER_ALT.name === "Identifier") ||
|
|
70
|
+
(token.tokenType.CATEGORIES &&
|
|
71
|
+
token.tokenType.CATEGORIES.some((cat) => cat.name === "Identifier"));
|
|
72
|
+
|
|
73
|
+
if (!isIdentifierLike) {
|
|
74
|
+
return null;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
const name = token.image;
|
|
78
|
+
if (this.__filterDoc[name]) {
|
|
79
|
+
return name;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
return null;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// eslint-disable-next-line no-unused-vars
|
|
86
|
+
isMatch(index, tokens, parser) {
|
|
87
|
+
// a filter always starts with a |
|
|
88
|
+
if (index === 0 || tokens[index - 1].image !== "|") {
|
|
89
|
+
return false;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
return !!this.findFilter(index, tokens);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
render(index, tokens) {
|
|
96
|
+
const fn = this.findFilter(index, tokens);
|
|
97
|
+
|
|
98
|
+
if (fn) {
|
|
99
|
+
return this.__filterDoc[fn];
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { expect } from "chai";
|
|
2
|
+
import { describe, it } from "mocha";
|
|
3
|
+
import { xanoscriptParser } from "../parser/parser.js";
|
|
4
|
+
import { FilterMessageProvider } from "./FilterMessageProvider.js";
|
|
5
|
+
|
|
6
|
+
const testdoc = `
|
|
7
|
+
# array_push
|
|
8
|
+
does this
|
|
9
|
+
# array_pop
|
|
10
|
+
does that
|
|
11
|
+
# array
|
|
12
|
+
does what
|
|
13
|
+
to who?
|
|
14
|
+
# first
|
|
15
|
+
pick the first element
|
|
16
|
+
# last
|
|
17
|
+
pick the last element
|
|
18
|
+
to who?
|
|
19
|
+
# concat
|
|
20
|
+
Will tape the strings together
|
|
21
|
+
# in
|
|
22
|
+
checks if value is in array
|
|
23
|
+
# !deprecated_filter:array_filter
|
|
24
|
+
Some message here
|
|
25
|
+
`;
|
|
26
|
+
|
|
27
|
+
describe("FilterMessageProvider", () => {
|
|
28
|
+
it("should return the message of the function", () => {
|
|
29
|
+
const messageProvider = new FilterMessageProvider(testdoc);
|
|
30
|
+
expect(messageProvider.__filterDoc["array_push"]).to.not.be.undefined;
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
it("should parse the functions from the documentation", () => {
|
|
34
|
+
const messageProvider = new FilterMessageProvider(testdoc);
|
|
35
|
+
|
|
36
|
+
expect(messageProvider.__filterDoc["array_push"]).to.equal("does this");
|
|
37
|
+
expect(messageProvider.__filterDoc["array"]).to.equal("does what\nto who?");
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
it("should display deprecated message on deprecated functions", () => {
|
|
41
|
+
const messageProvider = new FilterMessageProvider(testdoc);
|
|
42
|
+
expect(messageProvider.__filterDoc["deprecated_filter"]).to.equal(
|
|
43
|
+
"`deprecated_filter` is deprecated, use `array_filter` instead."
|
|
44
|
+
);
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
it("should match the filter name", async () => {
|
|
48
|
+
const code = `
|
|
49
|
+
function foo {
|
|
50
|
+
stack {
|
|
51
|
+
var $value {
|
|
52
|
+
code = "hello"|concat:" world"
|
|
53
|
+
}
|
|
54
|
+
db.query first as $users|first
|
|
55
|
+
}
|
|
56
|
+
}`;
|
|
57
|
+
const parser = xanoscriptParser(code.trim());
|
|
58
|
+
const messageProvider = new FilterMessageProvider(testdoc);
|
|
59
|
+
|
|
60
|
+
expect(parser.tokVector[15].image).to.equal("concat");
|
|
61
|
+
expect(messageProvider.isMatch(15, parser.tokVector)).to.be.true;
|
|
62
|
+
|
|
63
|
+
// this first is not a filter, it's table name
|
|
64
|
+
expect(parser.tokVector[24].image).to.equal("first");
|
|
65
|
+
expect(messageProvider.isMatch(24, parser.tokVector)).to.be.false;
|
|
66
|
+
|
|
67
|
+
expect(parser.tokVector[28].image).to.equal("first");
|
|
68
|
+
expect(messageProvider.isMatch(28, parser.tokVector)).to.be.true;
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
it("should match even when token is marked as an Identifier as an alternative", async () => {
|
|
72
|
+
const code = `function foo {
|
|
73
|
+
stack {
|
|
74
|
+
var $value {
|
|
75
|
+
code = "hello"|in:["hello", "world"]
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}`;
|
|
79
|
+
const parser = xanoscriptParser(code);
|
|
80
|
+
const messageProvider = new FilterMessageProvider(testdoc);
|
|
81
|
+
|
|
82
|
+
expect(parser.tokVector[15].image).to.equal("in");
|
|
83
|
+
expect(messageProvider.isMatch(15, parser.tokVector)).to.be.true;
|
|
84
|
+
});
|
|
85
|
+
});
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { HoverMessageProvider } from "./HoverMessageProvider.js";
|
|
2
|
+
|
|
3
|
+
// read the `functions.md` file to gather all the functions
|
|
4
|
+
// each function starts with `# function_name`
|
|
5
|
+
export class FunctionMessageProvider extends HoverMessageProvider {
|
|
6
|
+
/**
|
|
7
|
+
* @param {string} functionsMd
|
|
8
|
+
*/
|
|
9
|
+
constructor(functionsMd) {
|
|
10
|
+
super();
|
|
11
|
+
|
|
12
|
+
this.parseFunctions(functionsMd);
|
|
13
|
+
this.buildSearchTree();
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* take every functions, break it down into words
|
|
18
|
+
* and build a search tree in reverse order
|
|
19
|
+
* api.foo.lambda will be
|
|
20
|
+
* {
|
|
21
|
+
* lambda: {
|
|
22
|
+
* foo: {
|
|
23
|
+
* api: {
|
|
24
|
+
* __value: "api.foo.lambda"
|
|
25
|
+
* }
|
|
26
|
+
* }
|
|
27
|
+
* }
|
|
28
|
+
* }
|
|
29
|
+
*/
|
|
30
|
+
buildSearchTree() {
|
|
31
|
+
this.__searchTree = {};
|
|
32
|
+
for (let fn in this.__functionDoc) {
|
|
33
|
+
let parts = fn.split(".");
|
|
34
|
+
let tree = this.__searchTree;
|
|
35
|
+
for (let i = parts.length - 1; i >= 0; i--) {
|
|
36
|
+
let part = parts[i];
|
|
37
|
+
if (!tree[part]) {
|
|
38
|
+
tree[part] = {};
|
|
39
|
+
}
|
|
40
|
+
tree = tree[part];
|
|
41
|
+
}
|
|
42
|
+
tree.__value = fn;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* parser a markdown documentation text to extract all the functions
|
|
48
|
+
* and their documentation
|
|
49
|
+
* @param {string} content
|
|
50
|
+
*/
|
|
51
|
+
parseFunctions(content) {
|
|
52
|
+
this.__functionDoc = {};
|
|
53
|
+
let body = [];
|
|
54
|
+
let fn = "";
|
|
55
|
+
for (let line of content.split("\n")) {
|
|
56
|
+
if (line.startsWith("#")) {
|
|
57
|
+
if (fn) {
|
|
58
|
+
this.__functionDoc[fn] = body.join("\n");
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
fn = line.slice(2).trim();
|
|
62
|
+
body = [];
|
|
63
|
+
} else {
|
|
64
|
+
body.push(line);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
if (fn && body.length) {
|
|
69
|
+
this.__functionDoc[fn] = body.join("\n").trim();
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @param {number} index
|
|
76
|
+
* @param {import('chevrotain').IToken[]} tokens
|
|
77
|
+
* @param {*} tree
|
|
78
|
+
* @returns {string} the function documentation
|
|
79
|
+
*/
|
|
80
|
+
findFunction(index, tokens, tree = null) {
|
|
81
|
+
if (!tree) {
|
|
82
|
+
tree = this.__searchTree;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
const token = tokens[index];
|
|
86
|
+
const node = tree[token.image];
|
|
87
|
+
|
|
88
|
+
if (node) {
|
|
89
|
+
const prevToken = tokens[index - 1];
|
|
90
|
+
// if the prev node is a . then we're dealing method of a parent function
|
|
91
|
+
if (prevToken && prevToken.image === ".") {
|
|
92
|
+
return this.findFunction(index - 2, tokens, node);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
if (node.__value) {
|
|
96
|
+
return node.__value;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
return null;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// eslint-disable-next-line no-unused-vars
|
|
104
|
+
isMatch(index, tokens, parser) {
|
|
105
|
+
const next = tokens[index + 1];
|
|
106
|
+
// if the next token is a . then we're dealing with a method (x.y.z), we'll skip
|
|
107
|
+
// the function documentation until we find the method
|
|
108
|
+
if (next && next.image === ".") {
|
|
109
|
+
return false;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
return !!this.findFunction(index, tokens);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
render(index, tokens) {
|
|
116
|
+
const fn = this.findFunction(index, tokens);
|
|
117
|
+
|
|
118
|
+
if (fn) {
|
|
119
|
+
return this.__functionDoc[fn];
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { expect } from "chai";
|
|
2
|
+
import { describe, it } from "mocha";
|
|
3
|
+
import { xanoscriptParser } from "../parser/parser.js";
|
|
4
|
+
import { FunctionMessageProvider } from "./FunctionMessageProvider.js";
|
|
5
|
+
|
|
6
|
+
const testdoc = `
|
|
7
|
+
# api.lambda
|
|
8
|
+
does this
|
|
9
|
+
# test.lambda
|
|
10
|
+
does this
|
|
11
|
+
# api.foo.lambda
|
|
12
|
+
does that
|
|
13
|
+
# lambda
|
|
14
|
+
does that
|
|
15
|
+
and that
|
|
16
|
+
# api
|
|
17
|
+
does that
|
|
18
|
+
# $var
|
|
19
|
+
a variable
|
|
20
|
+
`;
|
|
21
|
+
|
|
22
|
+
describe("FunctionMessageProvider", () => {
|
|
23
|
+
it("should return the message of the function", () => {
|
|
24
|
+
const messageProvider = new FunctionMessageProvider(testdoc);
|
|
25
|
+
expect(messageProvider.__functionDoc["api.lambda"]).to.not.be.undefined;
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
it("should define the $var", () => {
|
|
29
|
+
const messageProvider = new FunctionMessageProvider(testdoc);
|
|
30
|
+
expect(messageProvider.__functionDoc["$var"]).to.not.be.undefined;
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
it("should parse the functions from the documentation", () => {
|
|
34
|
+
const messageProvider = new FunctionMessageProvider(testdoc);
|
|
35
|
+
|
|
36
|
+
expect(messageProvider.__functionDoc["api.lambda"]).to.equal("does this");
|
|
37
|
+
expect(messageProvider.__functionDoc["lambda"]).to.equal(
|
|
38
|
+
"does that\nand that"
|
|
39
|
+
);
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
it("should match the function name", async () => {
|
|
43
|
+
const code = `function foo {
|
|
44
|
+
stack {
|
|
45
|
+
api.lambda {
|
|
46
|
+
code = "console.log('hello')"
|
|
47
|
+
}
|
|
48
|
+
foo.lambda {
|
|
49
|
+
code = "console.log('hello')"
|
|
50
|
+
}
|
|
51
|
+
lambda {
|
|
52
|
+
code = "console.log('hello')"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}`;
|
|
56
|
+
const parser = xanoscriptParser(code);
|
|
57
|
+
const messageProvider = new FunctionMessageProvider(testdoc);
|
|
58
|
+
|
|
59
|
+
expect(parser.tokVector[9].image).to.equal("lambda");
|
|
60
|
+
expect(messageProvider.isMatch(9, parser.tokVector)).to.be.true;
|
|
61
|
+
|
|
62
|
+
expect(parser.tokVector[7].image).to.equal("api");
|
|
63
|
+
expect(messageProvider.isMatch(7, parser.tokVector)).to.be.false;
|
|
64
|
+
|
|
65
|
+
expect(parser.tokVector[20].image).to.equal("lambda");
|
|
66
|
+
expect(messageProvider.isMatch(20, parser.tokVector)).to.be.false;
|
|
67
|
+
|
|
68
|
+
expect(parser.tokVector[29].image).to.equal("lambda");
|
|
69
|
+
expect(messageProvider.isMatch(29, parser.tokVector)).to.be.true;
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
it("should build a search tree", () => {
|
|
73
|
+
const messageProvider = new FunctionMessageProvider(testdoc);
|
|
74
|
+
expect(messageProvider.__searchTree).to.deep.equal({
|
|
75
|
+
lambda: {
|
|
76
|
+
__value: "lambda",
|
|
77
|
+
test: {
|
|
78
|
+
__value: "test.lambda",
|
|
79
|
+
},
|
|
80
|
+
api: {
|
|
81
|
+
__value: "api.lambda",
|
|
82
|
+
},
|
|
83
|
+
foo: {
|
|
84
|
+
api: { __value: "api.foo.lambda" },
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
$var: {
|
|
88
|
+
__value: "$var",
|
|
89
|
+
},
|
|
90
|
+
api: {
|
|
91
|
+
__value: "api",
|
|
92
|
+
},
|
|
93
|
+
});
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
it("should find the correct match", async () => {
|
|
97
|
+
const code = `function foo {
|
|
98
|
+
stack {
|
|
99
|
+
api.lambda {
|
|
100
|
+
code = "console.log('hello')"
|
|
101
|
+
}
|
|
102
|
+
lambda {
|
|
103
|
+
code = "console.log('hello')"
|
|
104
|
+
}
|
|
105
|
+
api.foo.lambda {
|
|
106
|
+
code = "console.log('hello')"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}`;
|
|
110
|
+
const parser = xanoscriptParser(code);
|
|
111
|
+
const messageProvider = new FunctionMessageProvider(testdoc);
|
|
112
|
+
|
|
113
|
+
expect(parser.tokVector[9].image).to.equal("lambda");
|
|
114
|
+
expect(messageProvider.findFunction(9, parser.tokVector)).to.equal(
|
|
115
|
+
"api.lambda"
|
|
116
|
+
);
|
|
117
|
+
|
|
118
|
+
expect(parser.tokVector[18].image).to.equal("lambda");
|
|
119
|
+
expect(messageProvider.findFunction(18, parser.tokVector)).to.equal(
|
|
120
|
+
"lambda"
|
|
121
|
+
);
|
|
122
|
+
|
|
123
|
+
expect(parser.tokVector[31].image).to.equal("lambda");
|
|
124
|
+
expect(messageProvider.findFunction(31, parser.tokVector)).to.equal(
|
|
125
|
+
"api.foo.lambda"
|
|
126
|
+
);
|
|
127
|
+
});
|
|
128
|
+
});
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export class HoverMessageProvider {
|
|
2
|
+
constructor() {
|
|
3
|
+
this.message = "";
|
|
4
|
+
this.range = null;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* checks if the hover message matches the token at the given
|
|
9
|
+
* index
|
|
10
|
+
* @param {number} index
|
|
11
|
+
* @param {import('chevrotain').IToken[]} tokens
|
|
12
|
+
* @param {import('../parser/base_parser.js').XanoBaseParser} parser
|
|
13
|
+
* @returns {boolean} whether the token at the given index matches the hover message
|
|
14
|
+
*/
|
|
15
|
+
// eslint-disable-next-line no-unused-vars
|
|
16
|
+
isMatch(index, tokens, parser) {
|
|
17
|
+
return false;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* renders the hover message
|
|
22
|
+
* @param {number} index
|
|
23
|
+
* @param {import('chevrotain').IToken[]} tokens
|
|
24
|
+
* @param {import('../parser/base_parser').XanoBaseParser} parser
|
|
25
|
+
* @returns {string}
|
|
26
|
+
*/
|
|
27
|
+
// eslint-disable-next-line no-unused-vars
|
|
28
|
+
render(index, tokens, parser) {
|
|
29
|
+
return this.message;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { HoverMessageProvider } from "./HoverMessageProvider.js";
|
|
2
|
+
|
|
3
|
+
// read the `filters.md` file to gather all the filters
|
|
4
|
+
// each filter starts with `# filter_name`
|
|
5
|
+
export class InputFilterMessageProvider extends HoverMessageProvider {
|
|
6
|
+
/**
|
|
7
|
+
* @param {string} functionsMd
|
|
8
|
+
*/
|
|
9
|
+
constructor(functionsMd) {
|
|
10
|
+
super();
|
|
11
|
+
this.parseFilters(functionsMd);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* parser a markdown documentation text to extract all the filters
|
|
16
|
+
* and their documentation
|
|
17
|
+
* @param {string} content
|
|
18
|
+
*/
|
|
19
|
+
parseFilters(content) {
|
|
20
|
+
this.__filterDoc = {};
|
|
21
|
+
let body = [];
|
|
22
|
+
let fn = "";
|
|
23
|
+
for (let line of content.split("\n")) {
|
|
24
|
+
if (line.startsWith("#")) {
|
|
25
|
+
if (fn) {
|
|
26
|
+
this.__filterDoc[fn] = body.join("\n").trim();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
fn = line.slice(2).trim();
|
|
30
|
+
body = [];
|
|
31
|
+
} else {
|
|
32
|
+
body.push(line);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
if (fn && body.length) {
|
|
37
|
+
this.__filterDoc[fn] = body.join("\n").trim();
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* find a filter by its index in the token stream
|
|
43
|
+
* @param {int} index
|
|
44
|
+
* @param {import("chevrotain").[]} tokens
|
|
45
|
+
* @returns {string|null} the filter name or null if not found
|
|
46
|
+
*/
|
|
47
|
+
findFilter(index, tokens) {
|
|
48
|
+
const token = tokens[index];
|
|
49
|
+
|
|
50
|
+
// Check if it's an Identifier token or has Identifier as a category/longer_alt
|
|
51
|
+
const isIdentifierLike =
|
|
52
|
+
token.tokenType.name === "Identifier" ||
|
|
53
|
+
(token.tokenType.LONGER_ALT &&
|
|
54
|
+
token.tokenType.LONGER_ALT.name === "Identifier") ||
|
|
55
|
+
(token.tokenType.CATEGORIES &&
|
|
56
|
+
token.tokenType.CATEGORIES.some((cat) => cat.name === "Identifier"));
|
|
57
|
+
|
|
58
|
+
if (!isIdentifierLike) {
|
|
59
|
+
return null;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const name = token.image;
|
|
63
|
+
if (this.__filterDoc[name]) {
|
|
64
|
+
return name;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
return null;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// eslint-disable-next-line no-unused-vars
|
|
71
|
+
isMatch(index, tokens, parser) {
|
|
72
|
+
// Check if this looks like a filter (either after = or after |)
|
|
73
|
+
if (index === 0) {
|
|
74
|
+
return false;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
const prevToken = tokens[index - 1];
|
|
78
|
+
const isAfterEquals = prevToken.image === "=";
|
|
79
|
+
const isAfterPipe = prevToken.image === "|";
|
|
80
|
+
|
|
81
|
+
if (!isAfterEquals && !isAfterPipe) {
|
|
82
|
+
return false;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// For input filters, we need to check if there's a "filters" token before the "=" token
|
|
86
|
+
if (isAfterEquals) {
|
|
87
|
+
// Look backwards to find "filters" token
|
|
88
|
+
for (let i = index - 2; i >= 0; i--) {
|
|
89
|
+
const token = tokens[i];
|
|
90
|
+
if (token.image === "filters") {
|
|
91
|
+
// Found "filters" token, this is likely an input filter context
|
|
92
|
+
return !!this.findFilter(index, tokens);
|
|
93
|
+
}
|
|
94
|
+
// Stop looking if we hit certain boundary tokens
|
|
95
|
+
if (
|
|
96
|
+
token.image === "{" ||
|
|
97
|
+
token.image === "}" ||
|
|
98
|
+
token.image === "\n"
|
|
99
|
+
) {
|
|
100
|
+
break;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
return false;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// For pipe filters, check if we're in an input filter chain (filters=something|this_token)
|
|
107
|
+
if (isAfterPipe) {
|
|
108
|
+
// Look backwards to find if there's a "filters=" pattern
|
|
109
|
+
for (let i = index - 2; i >= 0; i--) {
|
|
110
|
+
const token = tokens[i];
|
|
111
|
+
if (token.image === "=" && i > 0 && tokens[i - 1].image === "filters") {
|
|
112
|
+
// Found "filters=" pattern, this is an input filter context
|
|
113
|
+
return !!this.findFilter(index, tokens);
|
|
114
|
+
}
|
|
115
|
+
// Stop looking if we hit certain boundary tokens that would indicate we're outside the filter chain
|
|
116
|
+
// Don't stop at intermediate pipes - they're part of the filter chain
|
|
117
|
+
if (
|
|
118
|
+
token.image === "{" ||
|
|
119
|
+
token.image === "}" ||
|
|
120
|
+
token.image === "\n"
|
|
121
|
+
) {
|
|
122
|
+
break;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
return false;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
return false;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
render(index, tokens) {
|
|
132
|
+
const fn = this.findFilter(index, tokens);
|
|
133
|
+
|
|
134
|
+
if (fn) {
|
|
135
|
+
return this.__filterDoc[fn];
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
return undefined;
|
|
139
|
+
}
|
|
140
|
+
}
|