@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
package/lexer/utils.js
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { createToken } from "chevrotain";
|
|
2
|
+
|
|
3
|
+
const tokenRegistry = new Map();
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* A factory function to create a token with a unique pattern
|
|
7
|
+
*
|
|
8
|
+
* @param {import('chevrotain').ITokenConfig} config The configuration object for the token
|
|
9
|
+
* @returns {import('chevrotain').TokenType}
|
|
10
|
+
*/
|
|
11
|
+
export function createUniqToken(config) {
|
|
12
|
+
const { pattern } = config;
|
|
13
|
+
const patternKey = pattern.toString(); // Convert RegExp to string for Map key
|
|
14
|
+
if (tokenRegistry.has(patternKey)) {
|
|
15
|
+
return tokenRegistry.get(patternKey);
|
|
16
|
+
}
|
|
17
|
+
const token = createToken(config);
|
|
18
|
+
tokenRegistry.set(patternKey, token);
|
|
19
|
+
return token;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* A shorthand function to create a token with a name derived from the given name
|
|
24
|
+
*
|
|
25
|
+
* @param {string} name The name of the token will be used to generate its pattern
|
|
26
|
+
* @param {import('chevrotain').ITokenConfig} config The configuration object for the token
|
|
27
|
+
* @returns {import('chevrotain').TokenType}
|
|
28
|
+
*/
|
|
29
|
+
export function createTokenByName(name, config) {
|
|
30
|
+
return createUniqToken({
|
|
31
|
+
name: `${name} token`,
|
|
32
|
+
pattern: new RegExp(name),
|
|
33
|
+
label: name,
|
|
34
|
+
...config,
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function __resetTokens() {
|
|
39
|
+
tokenRegistry.clear();
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function sortUniqTokens(tokens) {
|
|
43
|
+
// make tokens unique
|
|
44
|
+
tokens = Array.from(new Set(tokens));
|
|
45
|
+
|
|
46
|
+
// sort by pattern length
|
|
47
|
+
return tokens.sort((a, b) => {
|
|
48
|
+
if (a.PATTERN.source.length > b.PATTERN.source.length) {
|
|
49
|
+
return -1;
|
|
50
|
+
}
|
|
51
|
+
if (a.PATTERN.source.length < b.PATTERN.source.length) {
|
|
52
|
+
return 1;
|
|
53
|
+
}
|
|
54
|
+
return 0;
|
|
55
|
+
});
|
|
56
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { expect } from "chai";
|
|
2
|
+
import { beforeEach,describe, it } from "mocha";
|
|
3
|
+
import {
|
|
4
|
+
__resetTokens,
|
|
5
|
+
createTokenByName,
|
|
6
|
+
createUniqToken,
|
|
7
|
+
sortUniqTokens,
|
|
8
|
+
} from "./utils.js";
|
|
9
|
+
|
|
10
|
+
describe("createUniqToken", () => {
|
|
11
|
+
beforeEach(() => {
|
|
12
|
+
__resetTokens();
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
it("creates a token with a unique pattern", () => {
|
|
16
|
+
const token1 = createUniqToken({ pattern: /foo/ });
|
|
17
|
+
const token2 = createUniqToken({ pattern: /foo/ });
|
|
18
|
+
expect(token1).to.equal(token2);
|
|
19
|
+
});
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
describe("createTokenByName", () => {
|
|
23
|
+
beforeEach(() => {
|
|
24
|
+
__resetTokens();
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it("creates a token with a name derived from the given name", () => {
|
|
28
|
+
const token = createTokenByName("foo");
|
|
29
|
+
expect(token.name).to.equal("foo token");
|
|
30
|
+
expect(token.LABEL).to.equal("foo");
|
|
31
|
+
expect(new RegExp(token.pattern).test("foo")).to.be.true;
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
it("creates a token with a name derived from the given name", () => {
|
|
35
|
+
const token = createTokenByName("$remote_ip", { pattern: /\$remote_ip/ });
|
|
36
|
+
expect(token.name).to.equal("$remote_ip token");
|
|
37
|
+
expect(token.LABEL).to.equal("$remote_ip");
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
it("does not create duplicate tokens", () => {
|
|
41
|
+
const token1 = createTokenByName("foo");
|
|
42
|
+
const token2 = createTokenByName("foo");
|
|
43
|
+
expect(token1).to.equal(token2);
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
it("differentiate between lowercase and uppercase", () => {
|
|
47
|
+
const token_get = createTokenByName("get");
|
|
48
|
+
const token_GET = createTokenByName("GET");
|
|
49
|
+
expect(token_get.name).to.not.equal(token_GET.name);
|
|
50
|
+
});
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
describe("sortUniqTokens", () => {
|
|
54
|
+
it("sorts tokens by pattern length", () => {
|
|
55
|
+
const token1 = createUniqToken({ pattern: /foo/ });
|
|
56
|
+
const token2 = createUniqToken({ pattern: /fooBar/ });
|
|
57
|
+
const token3 = createUniqToken({ pattern: /fooBarBaz/ });
|
|
58
|
+
const tokens = sortUniqTokens([token1, token2, token3]);
|
|
59
|
+
expect(tokens).to.deep.equal([token3, token2, token1]);
|
|
60
|
+
});
|
|
61
|
+
});
|
package/lexer/var.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Identifier } from "./identifier.js";
|
|
2
|
+
import { createTokenByName } from "./utils.js";
|
|
3
|
+
|
|
4
|
+
// var
|
|
5
|
+
export const VarToken = createTokenByName("var", {
|
|
6
|
+
longer_alt: Identifier,
|
|
7
|
+
categories: [Identifier],
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
// var.update
|
|
11
|
+
export const UpdateToken = createTokenByName("update", {
|
|
12
|
+
longer_alt: Identifier,
|
|
13
|
+
categories: [Identifier],
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
export const VarTokens = [VarToken, UpdateToken];
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Maps a token name to a type
|
|
20
|
+
* @param {string} token the token name
|
|
21
|
+
*/
|
|
22
|
+
export function mapTokenToType(token) {
|
|
23
|
+
switch (token) {
|
|
24
|
+
case VarToken.name:
|
|
25
|
+
case UpdateToken.name:
|
|
26
|
+
return "function";
|
|
27
|
+
default:
|
|
28
|
+
return null;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import { createUniqToken } from "./utils.js";
|
|
2
|
+
|
|
3
|
+
export const ShortFormVariable = createUniqToken({
|
|
4
|
+
name: "ShortFormVariable",
|
|
5
|
+
pattern: /(\$[a-zA-Z_]\w*)|(\$\$)/,
|
|
6
|
+
label: "$",
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
export const ResponseVariable = createUniqToken({
|
|
10
|
+
name: "ResponseVariable",
|
|
11
|
+
pattern: /\$response/,
|
|
12
|
+
label: "$response",
|
|
13
|
+
categories: [ShortFormVariable],
|
|
14
|
+
longer_alt: ShortFormVariable,
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
export const LongFormVariable = createUniqToken({
|
|
18
|
+
name: "LongFormVariable",
|
|
19
|
+
pattern: /\$var/,
|
|
20
|
+
label: "$var",
|
|
21
|
+
longer_alt: ShortFormVariable, // allow $variable to be matched as short form variable
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
// $this
|
|
25
|
+
export const ContentThisToken = createUniqToken({
|
|
26
|
+
name: "$this",
|
|
27
|
+
pattern: /\$this/,
|
|
28
|
+
longer_alt: ShortFormVariable,
|
|
29
|
+
categories: [ShortFormVariable],
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
export const InputVariable = createUniqToken({
|
|
33
|
+
name: "InputVariable",
|
|
34
|
+
pattern: /\$input/,
|
|
35
|
+
longer_alt: ShortFormVariable,
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
export const EnvVariable = createUniqToken({
|
|
39
|
+
name: "EnvVariable",
|
|
40
|
+
pattern: /\$env/,
|
|
41
|
+
label: "$env",
|
|
42
|
+
longer_alt: ShortFormVariable,
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
export const AuthVariable = createUniqToken({
|
|
46
|
+
name: "AuthVariable",
|
|
47
|
+
pattern: /\$auth/,
|
|
48
|
+
label: "$auth",
|
|
49
|
+
longer_alt: ShortFormVariable,
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
export const RemoteIpVariable = createUniqToken({
|
|
53
|
+
name: "$remote_ip",
|
|
54
|
+
pattern: /\$remote_ip/,
|
|
55
|
+
longer_alt: ShortFormVariable,
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
// $tenant
|
|
59
|
+
export const TenantVariable = createUniqToken({
|
|
60
|
+
name: "$tenant",
|
|
61
|
+
pattern: /\$tenant/,
|
|
62
|
+
longer_alt: ShortFormVariable,
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
export const ErrorVariable = createUniqToken({
|
|
66
|
+
name: "$error",
|
|
67
|
+
pattern: /\$error/,
|
|
68
|
+
longer_alt: ShortFormVariable,
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
export const RemotePortVariable = createUniqToken({
|
|
72
|
+
name: "$remote_port",
|
|
73
|
+
pattern: /\$remote_port/,
|
|
74
|
+
longer_alt: ShortFormVariable,
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
export const RemoteUserVariable = createUniqToken({
|
|
78
|
+
name: "$remote_user",
|
|
79
|
+
pattern: /\$remote_user/,
|
|
80
|
+
longer_alt: ShortFormVariable,
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
// $http_headers
|
|
84
|
+
export const HttpHeadersVariable = createUniqToken({
|
|
85
|
+
name: "$http_headers",
|
|
86
|
+
pattern: /\$http_headers/,
|
|
87
|
+
longer_alt: ShortFormVariable,
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
// $webflow
|
|
91
|
+
export const WebflowVariable = createUniqToken({
|
|
92
|
+
name: "$webflow",
|
|
93
|
+
pattern: /\$webflow/,
|
|
94
|
+
longer_alt: ShortFormVariable,
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
// $api_baseurl
|
|
98
|
+
export const ApiBaseUrlVariable = createUniqToken({
|
|
99
|
+
name: "$api_baseurl",
|
|
100
|
+
pattern: /\$api_baseurl/,
|
|
101
|
+
longer_alt: ShortFormVariable,
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
// $request_uri
|
|
105
|
+
export const RequestUriVariable = createUniqToken({
|
|
106
|
+
name: "$request_uri",
|
|
107
|
+
pattern: /\$request_uri/,
|
|
108
|
+
longer_alt: ShortFormVariable,
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
// $request_querystring
|
|
112
|
+
export const RequestQuerystringVariable = createUniqToken({
|
|
113
|
+
name: "$request_querystring",
|
|
114
|
+
pattern: /\$request_querystring/,
|
|
115
|
+
longer_alt: ShortFormVariable,
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
// $request_auth_token
|
|
119
|
+
export const RequestAuthTokenVariable = createUniqToken({
|
|
120
|
+
name: "$request_auth_token",
|
|
121
|
+
pattern: /\$request_auth_token/,
|
|
122
|
+
longer_alt: ShortFormVariable,
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
// $datasource
|
|
126
|
+
export const DatasourceVariable = createUniqToken({
|
|
127
|
+
name: "$datasource",
|
|
128
|
+
pattern: /\$datasource/,
|
|
129
|
+
longer_alt: ShortFormVariable,
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
// $branch
|
|
133
|
+
export const BranchVariable = createUniqToken({
|
|
134
|
+
name: "$branch",
|
|
135
|
+
pattern: /\$branch/,
|
|
136
|
+
longer_alt: ShortFormVariable,
|
|
137
|
+
});
|
|
138
|
+
|
|
139
|
+
export const RemotePasswordVariable = createUniqToken({
|
|
140
|
+
name: "$remote_passwd",
|
|
141
|
+
pattern: /\$remote_passwd/,
|
|
142
|
+
longer_alt: ShortFormVariable,
|
|
143
|
+
});
|
|
144
|
+
|
|
145
|
+
export const RemoteHostVariable = createUniqToken({
|
|
146
|
+
name: "$remote_host",
|
|
147
|
+
pattern: /\$remote_host/,
|
|
148
|
+
longer_alt: ShortFormVariable,
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
export const RequestMethod = createUniqToken({
|
|
152
|
+
name: "$request_method",
|
|
153
|
+
pattern: /\$request_method/,
|
|
154
|
+
longer_alt: ShortFormVariable,
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
export const VariableTokens = [
|
|
158
|
+
ResponseVariable,
|
|
159
|
+
ContentThisToken,
|
|
160
|
+
LongFormVariable,
|
|
161
|
+
InputVariable,
|
|
162
|
+
EnvVariable,
|
|
163
|
+
AuthVariable,
|
|
164
|
+
ErrorVariable,
|
|
165
|
+
RemoteIpVariable,
|
|
166
|
+
TenantVariable,
|
|
167
|
+
RemotePortVariable,
|
|
168
|
+
RemoteUserVariable,
|
|
169
|
+
RemotePasswordVariable,
|
|
170
|
+
RemoteHostVariable,
|
|
171
|
+
RequestMethod,
|
|
172
|
+
HttpHeadersVariable,
|
|
173
|
+
WebflowVariable,
|
|
174
|
+
ApiBaseUrlVariable,
|
|
175
|
+
RequestUriVariable,
|
|
176
|
+
RequestQuerystringVariable,
|
|
177
|
+
RequestAuthTokenVariable,
|
|
178
|
+
DatasourceVariable,
|
|
179
|
+
BranchVariable,
|
|
180
|
+
ShortFormVariable, // short form should be last to avoid conflicts with $env, $auth, etc.
|
|
181
|
+
];
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Maps a token name to a type
|
|
185
|
+
* @param {string} token the token name
|
|
186
|
+
*/
|
|
187
|
+
export function mapTokenToType(token) {
|
|
188
|
+
switch (token) {
|
|
189
|
+
case InputVariable.name:
|
|
190
|
+
case ErrorVariable.name:
|
|
191
|
+
case EnvVariable.name:
|
|
192
|
+
case AuthVariable.name:
|
|
193
|
+
case RemoteIpVariable.name:
|
|
194
|
+
case TenantVariable.name:
|
|
195
|
+
case RemotePortVariable.name:
|
|
196
|
+
case RemoteUserVariable.name:
|
|
197
|
+
case RemotePasswordVariable.name:
|
|
198
|
+
case RemoteHostVariable.name:
|
|
199
|
+
case RequestMethod.name:
|
|
200
|
+
case ResponseVariable.name:
|
|
201
|
+
case LongFormVariable.name:
|
|
202
|
+
case HttpHeadersVariable.name:
|
|
203
|
+
case WebflowVariable.name:
|
|
204
|
+
case ApiBaseUrlVariable.name:
|
|
205
|
+
case RequestUriVariable.name:
|
|
206
|
+
case RequestQuerystringVariable.name:
|
|
207
|
+
case RequestAuthTokenVariable.name:
|
|
208
|
+
case DatasourceVariable.name:
|
|
209
|
+
case BranchVariable.name:
|
|
210
|
+
return "enumMember";
|
|
211
|
+
case ContentThisToken.name:
|
|
212
|
+
case ShortFormVariable.name:
|
|
213
|
+
return "variable";
|
|
214
|
+
default:
|
|
215
|
+
return null;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Identifier } from "./identifier.js";
|
|
2
|
+
import { createTokenByName } from "./utils.js";
|
|
3
|
+
|
|
4
|
+
// "datasource"
|
|
5
|
+
export const DatasourceToken = createTokenByName("datasource", {
|
|
6
|
+
longer_alt: Identifier,
|
|
7
|
+
categories: [Identifier],
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
// "workflow_test"
|
|
11
|
+
export const WorkflowTestToken = createTokenByName("workflow_test", {
|
|
12
|
+
longer_alt: Identifier,
|
|
13
|
+
categories: [Identifier],
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
// "exception"
|
|
17
|
+
export const ExceptionToken = createTokenByName("exception", {
|
|
18
|
+
longer_alt: Identifier,
|
|
19
|
+
categories: [Identifier],
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
export const WorkflowTestTokens = [
|
|
23
|
+
DatasourceToken,
|
|
24
|
+
WorkflowTestToken,
|
|
25
|
+
ExceptionToken,
|
|
26
|
+
];
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Maps a token name to a type
|
|
30
|
+
* @param {string} token the token name
|
|
31
|
+
*/
|
|
32
|
+
export function mapTokenToType(token) {
|
|
33
|
+
switch (token) {
|
|
34
|
+
case WorkflowTestToken.name:
|
|
35
|
+
return "keyword";
|
|
36
|
+
case ExceptionToken.name:
|
|
37
|
+
case DatasourceToken.name:
|
|
38
|
+
return "variable";
|
|
39
|
+
default:
|
|
40
|
+
return null;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Identifier } from "./identifier.js";
|
|
2
|
+
import { createTokenByName } from "./utils.js";
|
|
3
|
+
|
|
4
|
+
// "workspace"
|
|
5
|
+
export const WorkspaceToken = createTokenByName("workspace", {
|
|
6
|
+
longer_alt: Identifier,
|
|
7
|
+
categories: [Identifier],
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
export const WorkspaceTokens = [WorkspaceToken];
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Maps a token name to a type
|
|
14
|
+
* @param {string} token the token name
|
|
15
|
+
*/
|
|
16
|
+
export function mapTokenToType(token) {
|
|
17
|
+
switch (token) {
|
|
18
|
+
case WorkspaceToken.name:
|
|
19
|
+
return "keyword";
|
|
20
|
+
default:
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Identifier } from "./identifier.js";
|
|
2
|
+
import { createTokenByName } from "./utils.js";
|
|
3
|
+
|
|
4
|
+
// "actions"
|
|
5
|
+
export const ActionsToken = createTokenByName("actions", {
|
|
6
|
+
longer_alt: Identifier,
|
|
7
|
+
categories: [Identifier], // could also be an identifier
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
// "active"
|
|
11
|
+
export const ActiveToken = createTokenByName("active", {
|
|
12
|
+
longer_alt: Identifier,
|
|
13
|
+
categories: [Identifier], // could also be an identifier
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
// "workspace_trigger"
|
|
17
|
+
export const WorkspaceTriggerToken = createTokenByName("workspace_trigger", {
|
|
18
|
+
longer_alt: Identifier,
|
|
19
|
+
categories: [Identifier], // could also be an identifier
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
export const WorkspaceTriggerTokens = [
|
|
23
|
+
ActionsToken,
|
|
24
|
+
ActiveToken,
|
|
25
|
+
WorkspaceTriggerToken,
|
|
26
|
+
];
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Maps a token name to a type
|
|
30
|
+
* @param {string} token the token name
|
|
31
|
+
*/
|
|
32
|
+
export function mapTokenToType(token) {
|
|
33
|
+
switch (token) {
|
|
34
|
+
case ActionsToken.name:
|
|
35
|
+
case WorkspaceTriggerToken.name:
|
|
36
|
+
return "keyword";
|
|
37
|
+
case ActiveToken.name:
|
|
38
|
+
return "variable";
|
|
39
|
+
default:
|
|
40
|
+
return null;
|
|
41
|
+
}
|
|
42
|
+
}
|
package/lexer/zip.js
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { Identifier } from "./identifier.js";
|
|
2
|
+
import { createTokenByName } from "./utils.js";
|
|
3
|
+
|
|
4
|
+
// zip
|
|
5
|
+
export const ZipToken = createTokenByName("zip", {
|
|
6
|
+
longer_alt: Identifier,
|
|
7
|
+
categories: [Identifier],
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
// add_to_archive
|
|
11
|
+
export const AddToArchiveToken = createTokenByName("add_to_archive", {
|
|
12
|
+
longer_alt: Identifier,
|
|
13
|
+
categories: [Identifier],
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
// create_archive
|
|
17
|
+
export const CreateArchiveToken = createTokenByName("create_archive", {
|
|
18
|
+
longer_alt: Identifier,
|
|
19
|
+
categories: [Identifier],
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
// delete_from_archive
|
|
23
|
+
export const DeleteFromArchiveToken = createTokenByName("delete_from_archive", {
|
|
24
|
+
longer_alt: Identifier,
|
|
25
|
+
categories: [Identifier],
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
// extract
|
|
29
|
+
export const ExtractToken = createTokenByName("extract", {
|
|
30
|
+
longer_alt: Identifier,
|
|
31
|
+
categories: [Identifier],
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
// view_archive
|
|
35
|
+
export const ViewContentsToken = createTokenByName("view_contents", {
|
|
36
|
+
longer_alt: Identifier,
|
|
37
|
+
categories: [Identifier],
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
export const ZipTokens = [
|
|
41
|
+
ZipToken,
|
|
42
|
+
AddToArchiveToken,
|
|
43
|
+
CreateArchiveToken,
|
|
44
|
+
DeleteFromArchiveToken,
|
|
45
|
+
ExtractToken,
|
|
46
|
+
ViewContentsToken,
|
|
47
|
+
];
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Maps a token name to a type
|
|
51
|
+
* @param {string} token the token name
|
|
52
|
+
*/
|
|
53
|
+
export function mapTokenToType(token) {
|
|
54
|
+
switch (token) {
|
|
55
|
+
case ZipToken.name:
|
|
56
|
+
case AddToArchiveToken.name:
|
|
57
|
+
case CreateArchiveToken.name:
|
|
58
|
+
case DeleteFromArchiveToken.name:
|
|
59
|
+
case ExtractToken.name:
|
|
60
|
+
case ViewContentsToken.name:
|
|
61
|
+
return "function";
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { xanoscriptParser } from "../parser/parser";
|
|
2
|
+
import { getSchemeFromContent } from "../utils";
|
|
3
|
+
|
|
4
|
+
export function onCheckError(text, objectType) {
|
|
5
|
+
const scheme = getSchemeFromContent(objectType ?? text);
|
|
6
|
+
|
|
7
|
+
try {
|
|
8
|
+
// Parse the XanoScript file
|
|
9
|
+
const parser = xanoscriptParser(text, scheme);
|
|
10
|
+
|
|
11
|
+
if (parser.errors.length === 0) {
|
|
12
|
+
// If parsing succeeds, send an empty diagnostics array (no errors)
|
|
13
|
+
return [];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// If parsing fails, create a diagnostic (error message) to display in VS Code
|
|
17
|
+
const diagnostics = parser.errors.map((error) => {
|
|
18
|
+
const startOffset = error.token?.startOffset ?? 0;
|
|
19
|
+
const endOffset = error.token?.endOffset ?? 5;
|
|
20
|
+
// Calculate line and character positions from offset
|
|
21
|
+
const lines = text.substring(0, startOffset).split("\n");
|
|
22
|
+
const line = lines.length - 1;
|
|
23
|
+
const character = lines[lines.length - 1].length;
|
|
24
|
+
|
|
25
|
+
const endLines = text.substring(0, endOffset + 1).split("\n");
|
|
26
|
+
const endLine = endLines.length - 1;
|
|
27
|
+
const endCharacter = endLines[endLines.length - 1].length;
|
|
28
|
+
|
|
29
|
+
return {
|
|
30
|
+
range: {
|
|
31
|
+
start: { line, character },
|
|
32
|
+
end: { line: endLine, character: endCharacter },
|
|
33
|
+
},
|
|
34
|
+
message: error.message,
|
|
35
|
+
source: error.name || "XanoScript Parser",
|
|
36
|
+
};
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
return diagnostics;
|
|
40
|
+
} catch (error) {
|
|
41
|
+
console.error("Error checking for XanoScripterrors:", error);
|
|
42
|
+
}
|
|
43
|
+
}
|