@loopstack/loopstack-studio 0.21.0 → 0.21.2

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.
Files changed (668) hide show
  1. package/dist/components/LoadingCentered.js +2 -2
  2. package/dist/components/ai-elements/code-block.js +96 -0
  3. package/dist/components/ai-elements/message.js +87 -0
  4. package/dist/components/ai-elements/prompt-input.js +321 -0
  5. package/dist/components/ai-elements/reasoning.js +124 -0
  6. package/dist/components/ai-elements/shimmer.js +37 -0
  7. package/dist/components/ai-elements/sources.js +65 -0
  8. package/dist/components/ai-elements/tool.js +158 -0
  9. package/dist/components/content/ErrorAlert.js +17 -0
  10. package/dist/components/data-table/DataTable.js +99 -96
  11. package/dist/components/dynamic-form/CodeContent.js +2 -2
  12. package/dist/components/dynamic-form/FormElement.js +3 -3
  13. package/dist/components/dynamic-form/FormElementHeader.js +2 -2
  14. package/dist/components/dynamic-form/ObjectController.js +2 -2
  15. package/dist/components/layout/MainLayout.js +0 -1
  16. package/dist/components/lists/ListView.js +62 -59
  17. package/dist/components/loopstack-elements/link.js +115 -0
  18. package/dist/components/ui/button-group.js +13 -0
  19. package/dist/components/ui/command.js +7 -0
  20. package/dist/components/ui/context-menu.js +63 -0
  21. package/dist/components/ui/hover-card.js +6 -0
  22. package/dist/components/ui/input-group.js +85 -0
  23. package/dist/components/ui/select.js +2 -2
  24. package/dist/components/ui/table.js +2 -2
  25. package/dist/components/ui/tabs.js +54 -0
  26. package/dist/components/ui-widgets/UiActions.js +24 -0
  27. package/dist/components/ui-widgets/UiWidget.js +43 -0
  28. package/dist/components/ui-widgets/widgets/AiPromptInput.js +43 -0
  29. package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +23 -0
  30. package/dist/components/ui-widgets/widgets/SubmitButton.js +23 -0
  31. package/dist/events/sse-client-events.js +7 -0
  32. package/dist/features/code-explorer/CodeExplorer.js +69 -0
  33. package/dist/features/code-explorer/components/CodeExplorerTree.js +43 -0
  34. package/dist/features/code-explorer/components/CodeExplorerTreeNode.js +82 -0
  35. package/dist/features/code-explorer/components/FileContentViewer.js +237 -0
  36. package/dist/features/code-explorer/components/FileTabsBar.js +191 -0
  37. package/dist/features/code-explorer/providers/CodeExplorerProvider.js +165 -0
  38. package/dist/features/code-explorer/utils/fileIcons.js +42 -0
  39. package/dist/features/dashboard/Dashboard.js +125 -0
  40. package/dist/features/dashboard/RunItem.js +76 -0
  41. package/dist/features/dashboard/RunList.js +32 -0
  42. package/dist/features/debug/components/ConfigFlowViewer.js +79 -0
  43. package/dist/features/debug/components/PipelineDebugHeader.js +48 -0
  44. package/dist/features/debug/components/PipelineDebugLegend.js +68 -0
  45. package/dist/features/debug/components/PipelineFlowViewer.js +109 -0
  46. package/dist/features/debug/components/pipeline-flow/StateNode.js +111 -0
  47. package/dist/features/debug/components/pipeline-flow/WorkflowGraph.js +41 -0
  48. package/dist/features/debug/components/pipeline-flow/WorkflowTransitionEdge.js +97 -0
  49. package/dist/features/debug/lib/edge-paths.js +47 -0
  50. package/dist/features/debug/lib/flow-utils.js +247 -0
  51. package/dist/features/health/LocalHealthCheck.js +80 -67
  52. package/dist/features/oauth/OAuthCallbackPage.js +2 -0
  53. package/dist/features/oauth/OAuthPromptRenderer.js +223 -0
  54. package/dist/features/oauth/index.js +3 -0
  55. package/dist/features/oauth/useOAuthPopup.js +83 -0
  56. package/dist/features/workbench/NavigationItems.js +52 -0
  57. package/dist/features/workbench/Workbench.js +101 -0
  58. package/dist/features/workbench/WorkbenchNavigation.js +38 -0
  59. package/dist/features/workbench/WorkflowItem.js +67 -0
  60. package/dist/features/workbench/WorkflowList.js +110 -0
  61. package/dist/features/workbench/components/DocumentItem.js +27 -0
  62. package/dist/features/workbench/components/DocumentList.js +40 -0
  63. package/dist/features/workbench/components/DocumentMetadataPills.js +63 -0
  64. package/dist/features/workbench/components/DocumentRenderer.js +54 -0
  65. package/dist/features/workbench/components/NavigationItem.js +68 -0
  66. package/dist/features/workbench/components/PipelineHistoryList.js +56 -0
  67. package/dist/features/workbench/components/WorkbenchSettingsModal.js +89 -0
  68. package/dist/features/workbench/components/WorkbenchSidebar.js +109 -0
  69. package/dist/features/workbench/components/WorkflowForms.js +22 -0
  70. package/dist/features/workbench/components/WorkflowHistoryItem.js +144 -0
  71. package/dist/features/workbench/components/buttons/WorkflowButtons.js +85 -0
  72. package/dist/features/workbench/components/document-details/DocumentDetails.js +425 -0
  73. package/dist/features/workbench/components/document-details/PromptDetails.js +146 -0
  74. package/dist/features/workbench/components/document-renderer/AiMessage.js +56 -0
  75. package/dist/features/workbench/components/document-renderer/AiMessageContent.js +174 -0
  76. package/dist/features/workbench/components/document-renderer/DocumentDebugRenderer.js +30 -0
  77. package/dist/features/workbench/components/document-renderer/DocumentFormRenderer.js +79 -0
  78. package/dist/features/workbench/components/document-renderer/DocumentMessageRenderer.js +10 -0
  79. package/dist/features/workbench/components/document-renderer/ErrorMessageRenderer.js +13 -0
  80. package/dist/features/workbench/components/document-renderer/LinkMessageRenderer.js +17 -0
  81. package/dist/features/workbench/components/document-renderer/MarkdownMessageRenderer.js +10 -0
  82. package/dist/features/workbench/components/document-renderer/PlainMessageRenderer.js +9 -0
  83. package/dist/features/workbench/hooks/useAutoScrollBottom.js +29 -0
  84. package/dist/features/workbench/hooks/useIntersectionObserver.js +44 -0
  85. package/dist/features/workbench/hooks/useScrollToListItem.js +23 -0
  86. package/dist/features/workbench/providers/ScrollProvider.js +22 -0
  87. package/dist/features/workbench/providers/WorkbenchContextProvider.js +3 -0
  88. package/dist/features/workspaces/Workspaces.js +166 -99
  89. package/dist/features/workspaces/components/CreateWorkspace.js +101 -78
  90. package/dist/features/workspaces/components/ExecutionTimeline.js +1 -1
  91. package/dist/hooks/index.js +1 -0
  92. package/dist/hooks/useAuth.js +25 -4
  93. package/dist/hooks/useDashboard.js +23 -0
  94. package/dist/hooks/useDocuments.js +45 -0
  95. package/dist/hooks/useFiles.js +63 -0
  96. package/dist/hooks/useNamespaceTree.js +27 -0
  97. package/dist/hooks/useNamespaces.js +34 -0
  98. package/dist/hooks/usePipelines.js +83 -6
  99. package/dist/hooks/useWorkflows.js +122 -0
  100. package/dist/hooks/useWorkspaces.js +49 -29
  101. package/dist/index.d.ts +88 -10
  102. package/dist/index.js +11 -1
  103. package/dist/lib/requireParam.js +6 -0
  104. package/dist/loopstack-studio.css +1 -1
  105. package/dist/node_modules/@ai-sdk/provider/dist/index.js +65 -0
  106. package/dist/node_modules/@ai-sdk/provider-utils/dist/index.js +1008 -0
  107. package/dist/node_modules/@dagrejs/dagre/dist/dagre.esm.js +1968 -0
  108. package/dist/node_modules/@shikijs/core/dist/index.js +1420 -0
  109. package/dist/node_modules/@shikijs/engine-oniguruma/dist/index.js +236 -0
  110. package/dist/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.js +2 -0
  111. package/dist/node_modules/@shikijs/langs/dist/abap.js +2 -0
  112. package/dist/node_modules/@shikijs/langs/dist/actionscript-3.js +2 -0
  113. package/dist/node_modules/@shikijs/langs/dist/ada.js +2 -0
  114. package/dist/node_modules/@shikijs/langs/dist/angular-expression.js +2 -0
  115. package/dist/node_modules/@shikijs/langs/dist/angular-html.js +14 -0
  116. package/dist/node_modules/@shikijs/langs/dist/angular-inline-style.js +3 -0
  117. package/dist/node_modules/@shikijs/langs/dist/angular-inline-template.js +8 -0
  118. package/dist/node_modules/@shikijs/langs/dist/angular-let-declaration.js +3 -0
  119. package/dist/node_modules/@shikijs/langs/dist/angular-template-blocks.js +8 -0
  120. package/dist/node_modules/@shikijs/langs/dist/angular-template.js +3 -0
  121. package/dist/node_modules/@shikijs/langs/dist/angular-ts.js +16 -0
  122. package/dist/node_modules/@shikijs/langs/dist/apache.js +2 -0
  123. package/dist/node_modules/@shikijs/langs/dist/apex.js +2 -0
  124. package/dist/node_modules/@shikijs/langs/dist/apl.js +14 -0
  125. package/dist/node_modules/@shikijs/langs/dist/applescript.js +2 -0
  126. package/dist/node_modules/@shikijs/langs/dist/ara.js +2 -0
  127. package/dist/node_modules/@shikijs/langs/dist/asciidoc.js +2 -0
  128. package/dist/node_modules/@shikijs/langs/dist/asm.js +2 -0
  129. package/dist/node_modules/@shikijs/langs/dist/astro.js +16 -0
  130. package/dist/node_modules/@shikijs/langs/dist/awk.js +2 -0
  131. package/dist/node_modules/@shikijs/langs/dist/ballerina.js +2 -0
  132. package/dist/node_modules/@shikijs/langs/dist/bat.js +2 -0
  133. package/dist/node_modules/@shikijs/langs/dist/beancount.js +2 -0
  134. package/dist/node_modules/@shikijs/langs/dist/berry.js +2 -0
  135. package/dist/node_modules/@shikijs/langs/dist/bibtex.js +2 -0
  136. package/dist/node_modules/@shikijs/langs/dist/bicep.js +2 -0
  137. package/dist/node_modules/@shikijs/langs/dist/bird2.js +2 -0
  138. package/dist/node_modules/@shikijs/langs/dist/blade.js +18 -0
  139. package/dist/node_modules/@shikijs/langs/dist/bsl.js +3 -0
  140. package/dist/node_modules/@shikijs/langs/dist/c.js +2 -0
  141. package/dist/node_modules/@shikijs/langs/dist/c3.js +2 -0
  142. package/dist/node_modules/@shikijs/langs/dist/cadence.js +2 -0
  143. package/dist/node_modules/@shikijs/langs/dist/cairo.js +3 -0
  144. package/dist/node_modules/@shikijs/langs/dist/clarity.js +2 -0
  145. package/dist/node_modules/@shikijs/langs/dist/clojure.js +2 -0
  146. package/dist/node_modules/@shikijs/langs/dist/cmake.js +2 -0
  147. package/dist/node_modules/@shikijs/langs/dist/cobol.js +8 -0
  148. package/dist/node_modules/@shikijs/langs/dist/codeowners.js +2 -0
  149. package/dist/node_modules/@shikijs/langs/dist/codeql.js +2 -0
  150. package/dist/node_modules/@shikijs/langs/dist/coffee.js +3 -0
  151. package/dist/node_modules/@shikijs/langs/dist/common-lisp.js +2 -0
  152. package/dist/node_modules/@shikijs/langs/dist/coq.js +2 -0
  153. package/dist/node_modules/@shikijs/langs/dist/cpp-macro.js +10 -0
  154. package/dist/node_modules/@shikijs/langs/dist/cpp.js +12 -0
  155. package/dist/node_modules/@shikijs/langs/dist/crystal.js +16 -0
  156. package/dist/node_modules/@shikijs/langs/dist/csharp.js +2 -0
  157. package/dist/node_modules/@shikijs/langs/dist/css.js +2 -0
  158. package/dist/node_modules/@shikijs/langs/dist/csv.js +2 -0
  159. package/dist/node_modules/@shikijs/langs/dist/cue.js +2 -0
  160. package/dist/node_modules/@shikijs/langs/dist/cypher.js +2 -0
  161. package/dist/node_modules/@shikijs/langs/dist/d.js +2 -0
  162. package/dist/node_modules/@shikijs/langs/dist/dart.js +2 -0
  163. package/dist/node_modules/@shikijs/langs/dist/dax.js +2 -0
  164. package/dist/node_modules/@shikijs/langs/dist/desktop.js +2 -0
  165. package/dist/node_modules/@shikijs/langs/dist/diff.js +2 -0
  166. package/dist/node_modules/@shikijs/langs/dist/docker.js +2 -0
  167. package/dist/node_modules/@shikijs/langs/dist/dotenv.js +2 -0
  168. package/dist/node_modules/@shikijs/langs/dist/dream-maker.js +2 -0
  169. package/dist/node_modules/@shikijs/langs/dist/edge.js +10 -0
  170. package/dist/node_modules/@shikijs/langs/dist/elixir.js +3 -0
  171. package/dist/node_modules/@shikijs/langs/dist/elm.js +3 -0
  172. package/dist/node_modules/@shikijs/langs/dist/emacs-lisp.js +2 -0
  173. package/dist/node_modules/@shikijs/langs/dist/erb.js +8 -0
  174. package/dist/node_modules/@shikijs/langs/dist/erlang.js +3 -0
  175. package/dist/node_modules/@shikijs/langs/dist/es-tag-css.js +10 -0
  176. package/dist/node_modules/@shikijs/langs/dist/es-tag-glsl.js +10 -0
  177. package/dist/node_modules/@shikijs/langs/dist/es-tag-html.js +10 -0
  178. package/dist/node_modules/@shikijs/langs/dist/es-tag-sql.js +8 -0
  179. package/dist/node_modules/@shikijs/langs/dist/es-tag-xml.js +3 -0
  180. package/dist/node_modules/@shikijs/langs/dist/fennel.js +2 -0
  181. package/dist/node_modules/@shikijs/langs/dist/fish.js +2 -0
  182. package/dist/node_modules/@shikijs/langs/dist/fluent.js +2 -0
  183. package/dist/node_modules/@shikijs/langs/dist/fortran-fixed-form.js +3 -0
  184. package/dist/node_modules/@shikijs/langs/dist/fortran-free-form.js +2 -0
  185. package/dist/node_modules/@shikijs/langs/dist/fsharp.js +3 -0
  186. package/dist/node_modules/@shikijs/langs/dist/gdresource.js +8 -0
  187. package/dist/node_modules/@shikijs/langs/dist/gdscript.js +2 -0
  188. package/dist/node_modules/@shikijs/langs/dist/gdshader.js +2 -0
  189. package/dist/node_modules/@shikijs/langs/dist/genie.js +2 -0
  190. package/dist/node_modules/@shikijs/langs/dist/gherkin.js +2 -0
  191. package/dist/node_modules/@shikijs/langs/dist/git-commit.js +3 -0
  192. package/dist/node_modules/@shikijs/langs/dist/git-rebase.js +3 -0
  193. package/dist/node_modules/@shikijs/langs/dist/gleam.js +2 -0
  194. package/dist/node_modules/@shikijs/langs/dist/glimmer-js.js +12 -0
  195. package/dist/node_modules/@shikijs/langs/dist/glimmer-ts.js +12 -0
  196. package/dist/node_modules/@shikijs/langs/dist/glsl.js +3 -0
  197. package/dist/node_modules/@shikijs/langs/dist/gn.js +2 -0
  198. package/dist/node_modules/@shikijs/langs/dist/gnuplot.js +2 -0
  199. package/dist/node_modules/@shikijs/langs/dist/go.js +2 -0
  200. package/dist/node_modules/@shikijs/langs/dist/graphql.js +12 -0
  201. package/dist/node_modules/@shikijs/langs/dist/groovy.js +2 -0
  202. package/dist/node_modules/@shikijs/langs/dist/hack.js +8 -0
  203. package/dist/node_modules/@shikijs/langs/dist/haml.js +8 -0
  204. package/dist/node_modules/@shikijs/langs/dist/handlebars.js +12 -0
  205. package/dist/node_modules/@shikijs/langs/dist/haskell.js +2 -0
  206. package/dist/node_modules/@shikijs/langs/dist/haxe.js +2 -0
  207. package/dist/node_modules/@shikijs/langs/dist/hcl.js +2 -0
  208. package/dist/node_modules/@shikijs/langs/dist/hjson.js +2 -0
  209. package/dist/node_modules/@shikijs/langs/dist/hlsl.js +2 -0
  210. package/dist/node_modules/@shikijs/langs/dist/html-derivative.js +3 -0
  211. package/dist/node_modules/@shikijs/langs/dist/html.js +8 -0
  212. package/dist/node_modules/@shikijs/langs/dist/http.js +12 -0
  213. package/dist/node_modules/@shikijs/langs/dist/hurl.js +10 -0
  214. package/dist/node_modules/@shikijs/langs/dist/hxml.js +3 -0
  215. package/dist/node_modules/@shikijs/langs/dist/hy.js +2 -0
  216. package/dist/node_modules/@shikijs/langs/dist/imba.js +2 -0
  217. package/dist/node_modules/@shikijs/langs/dist/ini.js +2 -0
  218. package/dist/node_modules/@shikijs/langs/dist/java.js +2 -0
  219. package/dist/node_modules/@shikijs/langs/dist/javascript.js +2 -0
  220. package/dist/node_modules/@shikijs/langs/dist/jinja-html.js +3 -0
  221. package/dist/node_modules/@shikijs/langs/dist/jinja.js +3 -0
  222. package/dist/node_modules/@shikijs/langs/dist/jison.js +3 -0
  223. package/dist/node_modules/@shikijs/langs/dist/json.js +2 -0
  224. package/dist/node_modules/@shikijs/langs/dist/json5.js +2 -0
  225. package/dist/node_modules/@shikijs/langs/dist/jsonc.js +2 -0
  226. package/dist/node_modules/@shikijs/langs/dist/jsonl.js +2 -0
  227. package/dist/node_modules/@shikijs/langs/dist/jsonnet.js +2 -0
  228. package/dist/node_modules/@shikijs/langs/dist/jssm.js +2 -0
  229. package/dist/node_modules/@shikijs/langs/dist/jsx.js +2 -0
  230. package/dist/node_modules/@shikijs/langs/dist/julia.js +14 -0
  231. package/dist/node_modules/@shikijs/langs/dist/just.js +16 -0
  232. package/dist/node_modules/@shikijs/langs/dist/kdl.js +2 -0
  233. package/dist/node_modules/@shikijs/langs/dist/kotlin.js +2 -0
  234. package/dist/node_modules/@shikijs/langs/dist/kusto.js +2 -0
  235. package/dist/node_modules/@shikijs/langs/dist/latex.js +3 -0
  236. package/dist/node_modules/@shikijs/langs/dist/lean.js +2 -0
  237. package/dist/node_modules/@shikijs/langs/dist/less.js +2 -0
  238. package/dist/node_modules/@shikijs/langs/dist/liquid.js +12 -0
  239. package/dist/node_modules/@shikijs/langs/dist/llvm.js +2 -0
  240. package/dist/node_modules/@shikijs/langs/dist/log.js +2 -0
  241. package/dist/node_modules/@shikijs/langs/dist/logo.js +2 -0
  242. package/dist/node_modules/@shikijs/langs/dist/lua.js +3 -0
  243. package/dist/node_modules/@shikijs/langs/dist/luau.js +2 -0
  244. package/dist/node_modules/@shikijs/langs/dist/make.js +2 -0
  245. package/dist/node_modules/@shikijs/langs/dist/markdown-nix.js +2 -0
  246. package/dist/node_modules/@shikijs/langs/dist/markdown-vue.js +2 -0
  247. package/dist/node_modules/@shikijs/langs/dist/markdown.js +2 -0
  248. package/dist/node_modules/@shikijs/langs/dist/marko.js +12 -0
  249. package/dist/node_modules/@shikijs/langs/dist/matlab.js +2 -0
  250. package/dist/node_modules/@shikijs/langs/dist/mdc.js +10 -0
  251. package/dist/node_modules/@shikijs/langs/dist/mdx.js +2 -0
  252. package/dist/node_modules/@shikijs/langs/dist/mermaid.js +2 -0
  253. package/dist/node_modules/@shikijs/langs/dist/mipsasm.js +2 -0
  254. package/dist/node_modules/@shikijs/langs/dist/mojo.js +2 -0
  255. package/dist/node_modules/@shikijs/langs/dist/moonbit.js +2 -0
  256. package/dist/node_modules/@shikijs/langs/dist/move.js +2 -0
  257. package/dist/node_modules/@shikijs/langs/dist/narrat.js +2 -0
  258. package/dist/node_modules/@shikijs/langs/dist/nextflow-groovy.js +2 -0
  259. package/dist/node_modules/@shikijs/langs/dist/nextflow.js +3 -0
  260. package/dist/node_modules/@shikijs/langs/dist/nginx.js +3 -0
  261. package/dist/node_modules/@shikijs/langs/dist/nim.js +18 -0
  262. package/dist/node_modules/@shikijs/langs/dist/nix.js +3 -0
  263. package/dist/node_modules/@shikijs/langs/dist/nushell.js +2 -0
  264. package/dist/node_modules/@shikijs/langs/dist/objective-c.js +2 -0
  265. package/dist/node_modules/@shikijs/langs/dist/objective-cpp.js +2 -0
  266. package/dist/node_modules/@shikijs/langs/dist/ocaml.js +2 -0
  267. package/dist/node_modules/@shikijs/langs/dist/odin.js +2 -0
  268. package/dist/node_modules/@shikijs/langs/dist/openscad.js +2 -0
  269. package/dist/node_modules/@shikijs/langs/dist/pascal.js +2 -0
  270. package/dist/node_modules/@shikijs/langs/dist/perl.js +14 -0
  271. package/dist/node_modules/@shikijs/langs/dist/php.js +16 -0
  272. package/dist/node_modules/@shikijs/langs/dist/pkl.js +2 -0
  273. package/dist/node_modules/@shikijs/langs/dist/plsql.js +2 -0
  274. package/dist/node_modules/@shikijs/langs/dist/po.js +2 -0
  275. package/dist/node_modules/@shikijs/langs/dist/polar.js +2 -0
  276. package/dist/node_modules/@shikijs/langs/dist/postcss.js +2 -0
  277. package/dist/node_modules/@shikijs/langs/dist/powerquery.js +2 -0
  278. package/dist/node_modules/@shikijs/langs/dist/powershell.js +2 -0
  279. package/dist/node_modules/@shikijs/langs/dist/prisma.js +2 -0
  280. package/dist/node_modules/@shikijs/langs/dist/prolog.js +2 -0
  281. package/dist/node_modules/@shikijs/langs/dist/proto.js +2 -0
  282. package/dist/node_modules/@shikijs/langs/dist/pug.js +10 -0
  283. package/dist/node_modules/@shikijs/langs/dist/puppet.js +2 -0
  284. package/dist/node_modules/@shikijs/langs/dist/purescript.js +2 -0
  285. package/dist/node_modules/@shikijs/langs/dist/python.js +2 -0
  286. package/dist/node_modules/@shikijs/langs/dist/qml.js +3 -0
  287. package/dist/node_modules/@shikijs/langs/dist/qmldir.js +2 -0
  288. package/dist/node_modules/@shikijs/langs/dist/qss.js +2 -0
  289. package/dist/node_modules/@shikijs/langs/dist/r.js +2 -0
  290. package/dist/node_modules/@shikijs/langs/dist/racket.js +2 -0
  291. package/dist/node_modules/@shikijs/langs/dist/raku.js +2 -0
  292. package/dist/node_modules/@shikijs/langs/dist/razor.js +8 -0
  293. package/dist/node_modules/@shikijs/langs/dist/reg.js +2 -0
  294. package/dist/node_modules/@shikijs/langs/dist/regexp.js +2 -0
  295. package/dist/node_modules/@shikijs/langs/dist/rel.js +2 -0
  296. package/dist/node_modules/@shikijs/langs/dist/riscv.js +2 -0
  297. package/dist/node_modules/@shikijs/langs/dist/ron.js +2 -0
  298. package/dist/node_modules/@shikijs/langs/dist/rosmsg.js +2 -0
  299. package/dist/node_modules/@shikijs/langs/dist/rst.js +20 -0
  300. package/dist/node_modules/@shikijs/langs/dist/ruby.js +28 -0
  301. package/dist/node_modules/@shikijs/langs/dist/rust.js +2 -0
  302. package/dist/node_modules/@shikijs/langs/dist/sas.js +3 -0
  303. package/dist/node_modules/@shikijs/langs/dist/sass.js +2 -0
  304. package/dist/node_modules/@shikijs/langs/dist/scala.js +2 -0
  305. package/dist/node_modules/@shikijs/langs/dist/scheme.js +2 -0
  306. package/dist/node_modules/@shikijs/langs/dist/scss.js +3 -0
  307. package/dist/node_modules/@shikijs/langs/dist/sdbl.js +2 -0
  308. package/dist/node_modules/@shikijs/langs/dist/shaderlab.js +3 -0
  309. package/dist/node_modules/@shikijs/langs/dist/shellscript.js +2 -0
  310. package/dist/node_modules/@shikijs/langs/dist/shellsession.js +3 -0
  311. package/dist/node_modules/@shikijs/langs/dist/smalltalk.js +2 -0
  312. package/dist/node_modules/@shikijs/langs/dist/solidity.js +2 -0
  313. package/dist/node_modules/@shikijs/langs/dist/soy.js +3 -0
  314. package/dist/node_modules/@shikijs/langs/dist/sparql.js +3 -0
  315. package/dist/node_modules/@shikijs/langs/dist/splunk.js +2 -0
  316. package/dist/node_modules/@shikijs/langs/dist/sql.js +2 -0
  317. package/dist/node_modules/@shikijs/langs/dist/ssh-config.js +2 -0
  318. package/dist/node_modules/@shikijs/langs/dist/stata.js +3 -0
  319. package/dist/node_modules/@shikijs/langs/dist/stylus.js +2 -0
  320. package/dist/node_modules/@shikijs/langs/dist/surrealql.js +3 -0
  321. package/dist/node_modules/@shikijs/langs/dist/svelte.js +12 -0
  322. package/dist/node_modules/@shikijs/langs/dist/swift.js +2 -0
  323. package/dist/node_modules/@shikijs/langs/dist/system-verilog.js +2 -0
  324. package/dist/node_modules/@shikijs/langs/dist/systemd.js +2 -0
  325. package/dist/node_modules/@shikijs/langs/dist/talonscript.js +2 -0
  326. package/dist/node_modules/@shikijs/langs/dist/tasl.js +2 -0
  327. package/dist/node_modules/@shikijs/langs/dist/tcl.js +2 -0
  328. package/dist/node_modules/@shikijs/langs/dist/templ.js +10 -0
  329. package/dist/node_modules/@shikijs/langs/dist/terraform.js +2 -0
  330. package/dist/node_modules/@shikijs/langs/dist/tex.js +3 -0
  331. package/dist/node_modules/@shikijs/langs/dist/toml.js +2 -0
  332. package/dist/node_modules/@shikijs/langs/dist/ts-tags.js +16 -0
  333. package/dist/node_modules/@shikijs/langs/dist/tsv.js +2 -0
  334. package/dist/node_modules/@shikijs/langs/dist/tsx.js +2 -0
  335. package/dist/node_modules/@shikijs/langs/dist/turtle.js +2 -0
  336. package/dist/node_modules/@shikijs/langs/dist/twig.js +16 -0
  337. package/dist/node_modules/@shikijs/langs/dist/typescript.js +2 -0
  338. package/dist/node_modules/@shikijs/langs/dist/typespec.js +2 -0
  339. package/dist/node_modules/@shikijs/langs/dist/typst.js +2 -0
  340. package/dist/node_modules/@shikijs/langs/dist/v.js +2 -0
  341. package/dist/node_modules/@shikijs/langs/dist/vala.js +2 -0
  342. package/dist/node_modules/@shikijs/langs/dist/vb.js +2 -0
  343. package/dist/node_modules/@shikijs/langs/dist/verilog.js +2 -0
  344. package/dist/node_modules/@shikijs/langs/dist/vhdl.js +2 -0
  345. package/dist/node_modules/@shikijs/langs/dist/viml.js +2 -0
  346. package/dist/node_modules/@shikijs/langs/dist/vue-directives.js +2 -0
  347. package/dist/node_modules/@shikijs/langs/dist/vue-html.js +3 -0
  348. package/dist/node_modules/@shikijs/langs/dist/vue-interpolations.js +2 -0
  349. package/dist/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.js +3 -0
  350. package/dist/node_modules/@shikijs/langs/dist/vue-vine.js +16 -0
  351. package/dist/node_modules/@shikijs/langs/dist/vue.js +24 -0
  352. package/dist/node_modules/@shikijs/langs/dist/vyper.js +2 -0
  353. package/dist/node_modules/@shikijs/langs/dist/wasm.js +2 -0
  354. package/dist/node_modules/@shikijs/langs/dist/wenyan.js +2 -0
  355. package/dist/node_modules/@shikijs/langs/dist/wgsl.js +2 -0
  356. package/dist/node_modules/@shikijs/langs/dist/wikitext.js +2 -0
  357. package/dist/node_modules/@shikijs/langs/dist/wit.js +2 -0
  358. package/dist/node_modules/@shikijs/langs/dist/wolfram.js +2 -0
  359. package/dist/node_modules/@shikijs/langs/dist/xml.js +3 -0
  360. package/dist/node_modules/@shikijs/langs/dist/xsl.js +3 -0
  361. package/dist/node_modules/@shikijs/langs/dist/yaml.js +2 -0
  362. package/dist/node_modules/@shikijs/langs/dist/zenscript.js +2 -0
  363. package/dist/node_modules/@shikijs/langs/dist/zig.js +2 -0
  364. package/dist/node_modules/@shikijs/themes/dist/andromeeda.js +2 -0
  365. package/dist/node_modules/@shikijs/themes/dist/aurora-x.js +2 -0
  366. package/dist/node_modules/@shikijs/themes/dist/ayu-dark.js +2 -0
  367. package/dist/node_modules/@shikijs/themes/dist/ayu-light.js +2 -0
  368. package/dist/node_modules/@shikijs/themes/dist/ayu-mirage.js +2 -0
  369. package/dist/node_modules/@shikijs/themes/dist/catppuccin-frappe.js +2 -0
  370. package/dist/node_modules/@shikijs/themes/dist/catppuccin-latte.js +2 -0
  371. package/dist/node_modules/@shikijs/themes/dist/catppuccin-macchiato.js +2 -0
  372. package/dist/node_modules/@shikijs/themes/dist/catppuccin-mocha.js +2 -0
  373. package/dist/node_modules/@shikijs/themes/dist/dark-plus.js +2 -0
  374. package/dist/node_modules/@shikijs/themes/dist/dracula-soft.js +2 -0
  375. package/dist/node_modules/@shikijs/themes/dist/dracula.js +2 -0
  376. package/dist/node_modules/@shikijs/themes/dist/everforest-dark.js +2 -0
  377. package/dist/node_modules/@shikijs/themes/dist/everforest-light.js +2 -0
  378. package/dist/node_modules/@shikijs/themes/dist/github-dark-default.js +2 -0
  379. package/dist/node_modules/@shikijs/themes/dist/github-dark-dimmed.js +2 -0
  380. package/dist/node_modules/@shikijs/themes/dist/github-dark-high-contrast.js +2 -0
  381. package/dist/node_modules/@shikijs/themes/dist/github-dark.js +2 -0
  382. package/dist/node_modules/@shikijs/themes/dist/github-light-default.js +2 -0
  383. package/dist/node_modules/@shikijs/themes/dist/github-light-high-contrast.js +2 -0
  384. package/dist/node_modules/@shikijs/themes/dist/github-light.js +2 -0
  385. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.js +2 -0
  386. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.js +2 -0
  387. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.js +2 -0
  388. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-hard.js +2 -0
  389. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-medium.js +2 -0
  390. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-soft.js +2 -0
  391. package/dist/node_modules/@shikijs/themes/dist/horizon-bright.js +2 -0
  392. package/dist/node_modules/@shikijs/themes/dist/horizon.js +2 -0
  393. package/dist/node_modules/@shikijs/themes/dist/houston.js +2 -0
  394. package/dist/node_modules/@shikijs/themes/dist/kanagawa-dragon.js +2 -0
  395. package/dist/node_modules/@shikijs/themes/dist/kanagawa-lotus.js +2 -0
  396. package/dist/node_modules/@shikijs/themes/dist/kanagawa-wave.js +2 -0
  397. package/dist/node_modules/@shikijs/themes/dist/laserwave.js +2 -0
  398. package/dist/node_modules/@shikijs/themes/dist/light-plus.js +2 -0
  399. package/dist/node_modules/@shikijs/themes/dist/material-theme-darker.js +2 -0
  400. package/dist/node_modules/@shikijs/themes/dist/material-theme-lighter.js +2 -0
  401. package/dist/node_modules/@shikijs/themes/dist/material-theme-ocean.js +2 -0
  402. package/dist/node_modules/@shikijs/themes/dist/material-theme-palenight.js +2 -0
  403. package/dist/node_modules/@shikijs/themes/dist/material-theme.js +2 -0
  404. package/dist/node_modules/@shikijs/themes/dist/min-dark.js +2 -0
  405. package/dist/node_modules/@shikijs/themes/dist/min-light.js +2 -0
  406. package/dist/node_modules/@shikijs/themes/dist/monokai.js +2 -0
  407. package/dist/node_modules/@shikijs/themes/dist/night-owl-light.js +2 -0
  408. package/dist/node_modules/@shikijs/themes/dist/night-owl.js +2 -0
  409. package/dist/node_modules/@shikijs/themes/dist/nord.js +2 -0
  410. package/dist/node_modules/@shikijs/themes/dist/one-dark-pro.js +2 -0
  411. package/dist/node_modules/@shikijs/themes/dist/one-light.js +2 -0
  412. package/dist/node_modules/@shikijs/themes/dist/plastic.js +2 -0
  413. package/dist/node_modules/@shikijs/themes/dist/poimandres.js +2 -0
  414. package/dist/node_modules/@shikijs/themes/dist/red.js +2 -0
  415. package/dist/node_modules/@shikijs/themes/dist/rose-pine-dawn.js +2 -0
  416. package/dist/node_modules/@shikijs/themes/dist/rose-pine-moon.js +2 -0
  417. package/dist/node_modules/@shikijs/themes/dist/rose-pine.js +2 -0
  418. package/dist/node_modules/@shikijs/themes/dist/slack-dark.js +2 -0
  419. package/dist/node_modules/@shikijs/themes/dist/slack-ochin.js +2 -0
  420. package/dist/node_modules/@shikijs/themes/dist/snazzy-light.js +2 -0
  421. package/dist/node_modules/@shikijs/themes/dist/solarized-dark.js +2 -0
  422. package/dist/node_modules/@shikijs/themes/dist/solarized-light.js +2 -0
  423. package/dist/node_modules/@shikijs/themes/dist/synthwave-84.js +2 -0
  424. package/dist/node_modules/@shikijs/themes/dist/tokyo-night.js +2 -0
  425. package/dist/node_modules/@shikijs/themes/dist/vesper.js +2 -0
  426. package/dist/node_modules/@shikijs/themes/dist/vitesse-black.js +2 -0
  427. package/dist/node_modules/@shikijs/themes/dist/vitesse-dark.js +2 -0
  428. package/dist/node_modules/@shikijs/themes/dist/vitesse-light.js +2 -0
  429. package/dist/node_modules/@shikijs/types/dist/index.js +6 -0
  430. package/dist/node_modules/@shikijs/vscode-textmate/dist/index.js +1580 -0
  431. package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +51 -0
  432. package/dist/node_modules/@ungap/structured-clone/esm/index.js +4 -0
  433. package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +91 -0
  434. package/dist/node_modules/@ungap/structured-clone/esm/types.js +2 -0
  435. package/dist/node_modules/@xyflow/react/dist/esm/index.js +3280 -0
  436. package/dist/node_modules/@xyflow/system/dist/esm/index.js +1839 -0
  437. package/dist/node_modules/ai/dist/index.js +1083 -0
  438. package/dist/node_modules/bail/index.js +4 -0
  439. package/dist/node_modules/character-entities-html4/index.js +255 -0
  440. package/dist/node_modules/character-entities-legacy/index.js +2 -0
  441. package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +6 -1
  442. package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +4 -10
  443. package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +56 -65
  444. package/dist/node_modules/classcat/index.js +8 -0
  445. package/dist/node_modules/comma-separated-tokens/index.js +5 -1
  446. package/dist/node_modules/d3/src/index.js +5 -0
  447. package/dist/node_modules/d3-drag/src/constant.js +2 -0
  448. package/dist/node_modules/d3-drag/src/drag.js +112 -0
  449. package/dist/node_modules/d3-drag/src/event.js +60 -0
  450. package/dist/node_modules/d3-drag/src/nodrag.js +13 -0
  451. package/dist/node_modules/d3-drag/src/noevent.js +11 -0
  452. package/dist/node_modules/d3-interpolate/src/zoom.js +39 -0
  453. package/dist/node_modules/d3-selection/src/pointer.js +16 -0
  454. package/dist/node_modules/d3-selection/src/sourceEvent.js +6 -0
  455. package/dist/node_modules/d3-zoom/src/constant.js +2 -0
  456. package/dist/node_modules/d3-zoom/src/event.js +26 -0
  457. package/dist/node_modules/d3-zoom/src/index.js +1 -1
  458. package/dist/node_modules/d3-zoom/src/noevent.js +7 -0
  459. package/dist/node_modules/d3-zoom/src/zoom.js +214 -1
  460. package/dist/node_modules/decode-named-character-reference/index.dom.js +8 -0
  461. package/dist/node_modules/entities/dist/esm/decode-codepoint.js +35 -0
  462. package/dist/node_modules/entities/dist/esm/decode.js +129 -0
  463. package/dist/node_modules/entities/dist/esm/generated/decode-data-html.js +2 -0
  464. package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +5 -0
  465. package/dist/node_modules/extend/index.js +37 -0
  466. package/dist/node_modules/hast-util-from-parse5/lib/index.js +121 -0
  467. package/dist/node_modules/hast-util-raw/lib/index.js +204 -0
  468. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/doctype.js +34 -0
  469. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/error-codes.js +5 -0
  470. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/foreign-content.js +150 -0
  471. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/html.js +267 -0
  472. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/token.js +9 -0
  473. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/unicode.js +65 -0
  474. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/index.js +8 -0
  475. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/formatting-element-list.js +69 -0
  476. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/index.js +1936 -0
  477. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/open-element-stack.js +239 -0
  478. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/serializer/index.js +22 -0
  479. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/index.js +1451 -0
  480. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/preprocessor.js +75 -0
  481. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tree-adapters/default.js +155 -0
  482. package/dist/node_modules/hast-util-sanitize/lib/index.js +159 -0
  483. package/dist/node_modules/hast-util-sanitize/lib/schema.js +73 -0
  484. package/dist/node_modules/hast-util-to-html/lib/handle/comment.js +9 -0
  485. package/dist/node_modules/hast-util-to-html/lib/handle/doctype.js +4 -0
  486. package/dist/node_modules/hast-util-to-html/lib/handle/element.js +47 -0
  487. package/dist/node_modules/hast-util-to-html/lib/handle/index.js +27 -0
  488. package/dist/node_modules/hast-util-to-html/lib/handle/raw.js +5 -0
  489. package/dist/node_modules/hast-util-to-html/lib/handle/root.js +4 -0
  490. package/dist/node_modules/hast-util-to-html/lib/handle/text.js +6 -0
  491. package/dist/node_modules/hast-util-to-html/lib/index.js +46 -0
  492. package/dist/node_modules/hast-util-to-html/lib/omission/closing.js +84 -0
  493. package/dist/node_modules/hast-util-to-html/lib/omission/omission.js +8 -0
  494. package/dist/node_modules/hast-util-to-html/lib/omission/opening.js +37 -0
  495. package/dist/node_modules/hast-util-to-html/lib/omission/util/siblings.js +12 -0
  496. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +251 -0
  497. package/dist/node_modules/hast-util-to-parse5/lib/index.js +113 -0
  498. package/dist/node_modules/hast-util-whitespace/lib/index.js +8 -0
  499. package/dist/node_modules/html-url-attributes/lib/index.js +34 -0
  500. package/dist/node_modules/html-void-elements/index.js +23 -0
  501. package/dist/node_modules/inline-style-parser/cjs/index.js +88 -0
  502. package/dist/node_modules/lodash/_Symbol.js +7 -0
  503. package/dist/node_modules/lodash/_baseGetTag.js +13 -0
  504. package/dist/node_modules/lodash/_baseTrim.js +11 -0
  505. package/dist/node_modules/lodash/_freeGlobal.js +6 -0
  506. package/dist/node_modules/lodash/_getRawTag.js +17 -0
  507. package/dist/node_modules/lodash/_objectToString.js +10 -0
  508. package/dist/node_modules/lodash/_root.js +8 -0
  509. package/dist/node_modules/lodash/_trimmedEndIndex.js +11 -0
  510. package/dist/node_modules/lodash/debounce.js +53 -0
  511. package/dist/node_modules/lodash/isObject.js +10 -0
  512. package/dist/node_modules/lodash/isObjectLike.js +9 -0
  513. package/dist/node_modules/lodash/isSymbol.js +12 -0
  514. package/dist/node_modules/lodash/now.js +10 -0
  515. package/dist/node_modules/lodash/toNumber.js +22 -0
  516. package/dist/node_modules/mdast-util-from-markdown/lib/index.js +555 -0
  517. package/dist/node_modules/mdast-util-to-hast/lib/footer.js +101 -0
  518. package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +10 -0
  519. package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +13 -0
  520. package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +20 -0
  521. package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +10 -0
  522. package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +10 -0
  523. package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +28 -0
  524. package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +10 -0
  525. package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +10 -0
  526. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +19 -0
  527. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +13 -0
  528. package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +54 -0
  529. package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +15 -0
  530. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +16 -0
  531. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +13 -0
  532. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +57 -0
  533. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +18 -0
  534. package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +10 -0
  535. package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +8 -0
  536. package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +10 -0
  537. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +10 -0
  538. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +22 -0
  539. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +33 -0
  540. package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +9 -0
  541. package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +10 -0
  542. package/dist/node_modules/mdast-util-to-hast/lib/index.js +17 -0
  543. package/dist/node_modules/mdast-util-to-hast/lib/revert.js +18 -0
  544. package/dist/node_modules/mdast-util-to-hast/lib/state.js +106 -0
  545. package/dist/node_modules/micromark/lib/constructs.js +79 -0
  546. package/dist/node_modules/micromark/lib/create-tokenizer.js +175 -0
  547. package/dist/node_modules/micromark/lib/initialize/content.js +32 -0
  548. package/dist/node_modules/micromark/lib/initialize/document.js +101 -0
  549. package/dist/node_modules/micromark/lib/initialize/flow.js +23 -0
  550. package/dist/node_modules/micromark/lib/initialize/text.js +84 -0
  551. package/dist/node_modules/micromark/lib/parse.js +27 -0
  552. package/dist/node_modules/micromark/lib/postprocess.js +6 -0
  553. package/dist/node_modules/micromark/lib/preprocess.js +30 -0
  554. package/dist/node_modules/micromark-core-commonmark/lib/attention.js +112 -0
  555. package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +41 -0
  556. package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +36 -0
  557. package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +15 -0
  558. package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +27 -0
  559. package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +88 -0
  560. package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +42 -0
  561. package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +41 -0
  562. package/dist/node_modules/micromark-core-commonmark/lib/content.js +46 -0
  563. package/dist/node_modules/micromark-core-commonmark/lib/definition.js +59 -0
  564. package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +15 -0
  565. package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +65 -0
  566. package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +140 -0
  567. package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +98 -0
  568. package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +157 -0
  569. package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +21 -0
  570. package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +18 -0
  571. package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +12 -0
  572. package/dist/node_modules/micromark-core-commonmark/lib/list.js +77 -0
  573. package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +57 -0
  574. package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +23 -0
  575. package/dist/node_modules/micromark-factory-destination/index.js +24 -0
  576. package/dist/node_modules/micromark-factory-label/index.js +18 -0
  577. package/dist/node_modules/micromark-factory-title/index.js +22 -0
  578. package/dist/node_modules/micromark-factory-whitespace/index.js +10 -0
  579. package/dist/node_modules/micromark-util-character/index.js +6 -5
  580. package/dist/node_modules/micromark-util-chunked/index.js +4 -1
  581. package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +5 -0
  582. package/dist/node_modules/micromark-util-decode-string/index.js +15 -0
  583. package/dist/node_modules/micromark-util-html-tag-name/index.js +7 -0
  584. package/dist/node_modules/micromark-util-sanitize-uri/index.js +16 -0
  585. package/dist/node_modules/micromark-util-subtokenize/index.js +33 -0
  586. package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +55 -0
  587. package/dist/node_modules/motion/dist/es/react.js +3 -0
  588. package/dist/node_modules/nanoid/index.browser.js +7 -0
  589. package/dist/node_modules/nanoid/url-alphabet/index.js +2 -0
  590. package/dist/node_modules/property-information/index.js +1 -0
  591. package/dist/node_modules/property-information/lib/hast-to-react.js +20 -0
  592. package/dist/node_modules/rehype-harden/dist/index.js +168 -0
  593. package/dist/node_modules/rehype-raw/lib/index.js +10 -0
  594. package/dist/node_modules/rehype-sanitize/lib/index.js +7 -0
  595. package/dist/node_modules/remark-parse/lib/index.js +14 -0
  596. package/dist/node_modules/remark-rehype/lib/index.js +16 -0
  597. package/dist/node_modules/remend/dist/index.js +459 -0
  598. package/dist/node_modules/shiki/dist/bundle-full.js +11 -0
  599. package/dist/node_modules/shiki/dist/langs.js +1278 -0
  600. package/dist/node_modules/shiki/dist/themes.js +393 -0
  601. package/dist/node_modules/shiki/dist/wasm.js +2 -0
  602. package/dist/node_modules/space-separated-tokens/index.js +4 -1
  603. package/dist/node_modules/streamdown/dist/chunk-RLXIAIE6.js +2189 -0
  604. package/dist/node_modules/streamdown/dist/highlighted-body-B3W2YXNL.js +33 -0
  605. package/dist/node_modules/streamdown/dist/index.js +2 -0
  606. package/dist/node_modules/streamdown/dist/mermaid-3ZIDBTTL.js +3 -0
  607. package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +1421 -0
  608. package/dist/node_modules/stringify-entities/lib/constant/dangerous.js +11 -0
  609. package/dist/node_modules/stringify-entities/lib/core.js +21 -0
  610. package/dist/node_modules/stringify-entities/lib/index.js +6 -0
  611. package/dist/node_modules/stringify-entities/lib/util/format-smart.js +12 -0
  612. package/dist/node_modules/stringify-entities/lib/util/to-decimal.js +6 -0
  613. package/dist/node_modules/stringify-entities/lib/util/to-hexadecimal.js +6 -0
  614. package/dist/node_modules/stringify-entities/lib/util/to-named.js +15 -0
  615. package/dist/node_modules/style-to-js/cjs/index.js +17 -0
  616. package/dist/node_modules/style-to-js/cjs/utilities.js +16 -0
  617. package/dist/node_modules/style-to-object/cjs/index.js +21 -0
  618. package/dist/node_modules/trim-lines/index.js +19 -0
  619. package/dist/node_modules/trough/lib/index.js +48 -0
  620. package/dist/node_modules/unified/lib/callable-instance.js +7 -0
  621. package/dist/node_modules/unified/lib/index.js +160 -0
  622. package/dist/node_modules/unified/node_modules/is-plain-obj/index.js +6 -0
  623. package/dist/node_modules/unist-util-position/lib/index.js +20 -0
  624. package/dist/node_modules/unist-util-stringify-position/lib/index.js +13 -0
  625. package/dist/node_modules/vfile/lib/index.js +87 -0
  626. package/dist/node_modules/vfile/lib/minpath.browser.js +97 -0
  627. package/dist/node_modules/vfile/lib/minproc.browser.js +5 -0
  628. package/dist/node_modules/vfile/lib/minurl.browser.js +29 -0
  629. package/dist/node_modules/vfile/lib/minurl.shared.js +4 -0
  630. package/dist/node_modules/vfile-location/lib/index.js +41 -0
  631. package/dist/node_modules/vfile-message/lib/index.js +22 -0
  632. package/dist/node_modules/zod/v3/ZodError.js +79 -0
  633. package/dist/node_modules/zod/v3/errors.js +6 -0
  634. package/dist/node_modules/zod/v3/helpers/errorUtil.js +5 -0
  635. package/dist/node_modules/zod/v3/helpers/parseUtil.js +90 -0
  636. package/dist/node_modules/zod/v3/helpers/util.js +72 -0
  637. package/dist/node_modules/zod/v3/locales/en.js +58 -0
  638. package/dist/node_modules/zod/v3/types.js +2425 -0
  639. package/dist/node_modules/zod/v4/classic/errors.js +21 -0
  640. package/dist/node_modules/zod/v4/classic/iso.js +29 -0
  641. package/dist/node_modules/zod/v4/classic/parse.js +4 -0
  642. package/dist/node_modules/zod/v4/classic/schemas.js +392 -0
  643. package/dist/node_modules/zod/v4/core/api.js +532 -0
  644. package/dist/node_modules/zod/v4/core/checks.js +283 -0
  645. package/dist/node_modules/zod/v4/core/core.js +44 -0
  646. package/dist/node_modules/zod/v4/core/doc.js +21 -0
  647. package/dist/node_modules/zod/v4/core/errors.js +40 -0
  648. package/dist/node_modules/zod/v4/core/json-schema-processors.js +305 -0
  649. package/dist/node_modules/zod/v4/core/parse.js +66 -0
  650. package/dist/node_modules/zod/v4/core/regexes.js +28 -0
  651. package/dist/node_modules/zod/v4/core/registries.js +38 -0
  652. package/dist/node_modules/zod/v4/core/schemas.js +863 -0
  653. package/dist/node_modules/zod/v4/core/to-json-schema.js +220 -0
  654. package/dist/node_modules/zod/v4/core/util.js +267 -0
  655. package/dist/node_modules/zod/v4/core/versions.js +6 -0
  656. package/dist/node_modules/zwitch/index.js +14 -0
  657. package/dist/pages/DashboardPage.js +58 -0
  658. package/dist/pages/DebugWorkflowDetailsPage.js +121 -0
  659. package/dist/pages/DebugWorkflowsPage.js +130 -0
  660. package/dist/pages/EmbedWorkbenchPage.js +73 -0
  661. package/dist/pages/PipelineDebugPage.js +114 -0
  662. package/dist/pages/WorkbenchPage.js +67 -0
  663. package/dist/pages/WorkspacePage.js +1 -1
  664. package/dist/providers/ComponentOverridesProvider.js +12 -0
  665. package/dist/providers/InvalidationEventsProvider.js +43 -0
  666. package/dist/providers/SseProvider.js +44 -0
  667. package/dist/routing/LocalRouter.js +3 -0
  668. package/package.json +3 -3
@@ -0,0 +1,2 @@
1
+ var asm_default = [Object.freeze(JSON.parse("{\"displayName\":\"Assembly\",\"fileTypes\":[\"asm\",\"nasm\",\"yasm\",\"inc\",\"s\"],\"name\":\"asm\",\"patterns\":[{\"include\":\"#registers\"},{\"include\":\"#mnemonics\"},{\"include\":\"#constants\"},{\"include\":\"#entities\"},{\"include\":\"#support\"},{\"include\":\"#comments\"},{\"include\":\"#preprocessor\"},{\"include\":\"#strings\"}],\"repository\":{\"comments\":{\"patterns\":[{\"match\":\"(;|(^|\\\\s)#\\\\s).*$\",\"name\":\"comment.line\"},{\"begin\":\"/\\\\*\",\"end\":\"\\\\*/\",\"name\":\"comment.block\"},{\"begin\":\"^\\\\s*[#%]\\\\s*if\\\\s+0\\\\b\",\"end\":\"^\\\\s*[#%]\\\\s*endif\\\\b\",\"name\":\"comment.preprocessor\"}]},\"constants\":{\"patterns\":[{\"match\":\"(?i)\\\\b0[by][01][01_]*\\\\.(?:(?:[01][01_]*)?(?:p[-+]?[0-9][0-9_]*)?\\\\b)?\",\"name\":\"constant.numeric.binary.floating-point.asm.x86_64\"},{\"match\":\"(?i)\\\\b0[by][01][01_]*p[-+]?[0-9][0-9_]*\\\\b\",\"name\":\"constant.numeric.binary.floating-point.asm.x86_64\"},{\"match\":\"(?i)\\\\b0[oq][0-7][0-7_]*\\\\.(?:(?:[0-7][0-7_]*)?(?:p[-+]?[0-9][0-9_]*)?\\\\b)?\",\"name\":\"constant.numeric.octal.floating-point.asm.x86_64\"},{\"match\":\"(?i)\\\\b0[oq][0-7][0-7_]*p[-+]?[0-9][0-9_]*\\\\b\",\"name\":\"constant.numeric.octal.floating-point.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:0[dt])?[0-9][0-9_]*\\\\.(?:(?:[0-9][0-9_]*)?(?:e[-+]?[0-9][0-9_]*)?\\\\b)?\",\"name\":\"constant.numeric.decimal.floating-point.asm.x86_64\"},{\"match\":\"(?i)\\\\b[0-9][0-9_]*e[-+]?[0-9][0-9_]*\\\\b\",\"name\":\"constant.numeric.decimal.floating-point.asm.x86_64\"},{\"match\":\"(?i)\\\\b[0-9][0-9_]*p(?:[0-9][0-9_]*)?\\\\b\",\"name\":\"constant.numeric.decimal.packed-bcd.asm.x86_64\"},{\"match\":\"(?i)\\\\b0[hx]\\\\h[_\\\\h]*\\\\.(?:(?:\\\\h[_\\\\h]*)?(?:p[-+]?[0-9][0-9_]*)?\\\\b)?\",\"name\":\"constant.numeric.hex.floating-point.asm.x86_64\"},{\"match\":\"(?i)\\\\b0[hx]\\\\h[_\\\\h]*p[-+]?[0-9][0-9_]*\\\\b\",\"name\":\"constant.numeric.hex.floating-point.asm.x86_64\"},{\"match\":\"(?i)\\\\$[0-9]_?(?:\\\\h[_\\\\h]*)?\\\\.(?:(?:\\\\h[_\\\\h]*)?(?:p[-+]?[0-9][0-9_]*)?\\\\b)?\",\"name\":\"constant.numeric.hex.floating-point.asm.x86_64\"},{\"match\":\"(?i)\\\\$[0-9]_?\\\\h[_\\\\h]*p[-+]?[0-9][0-9_]*\\\\b\",\"name\":\"constant.numeric.hex.floating-point.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:0[by][01][01_]*|[01][01_]*[by])\\\\b\",\"name\":\"constant.numeric.binary.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:0[oq][0-7][0-7_]*|[0-7][0-7_]*[oq])\\\\b\",\"name\":\"constant.numeric.octal.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:0[dt][0-9][0-9_]*|[0-9][0-9_]*[dt]?)\\\\b\",\"name\":\"constant.numeric.decimal.asm.x86_64\"},{\"match\":\"(?i)\\\\$[0-9]_?(?:\\\\h[_\\\\h]*)?\\\\b\",\"name\":\"constant.numeric.hex.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:0[hx]\\\\h[_\\\\h]*|\\\\h[_\\\\h]*[HXhx])\\\\b\",\"name\":\"constant.numeric.hex.asm.x86_64\"}]},\"entities\":{\"patterns\":[{\"match\":\"((se(?:ction|gment))\\\\s+)?\\\\.((ro)?data|bss|text)\",\"name\":\"entity.name.section\"},{\"match\":\"^\\\\.?(globa?l|extern|required)\\\\b\",\"name\":\"entity.directive\"},{\"match\":\"(\\\\$\\\\w+)\\\\b\",\"name\":\"text.variable\"},{\"captures\":{\"1\":{\"name\":\"punctuation.separator.asm.x86_64 storage.modifier.asm.x86_64\"},\"2\":{\"name\":\"entity.name.function.special.asm.x86_64\"},\"3\":{\"name\":\"punctuation.separator.asm.x86_64\"}},\"match\":\"(\\\\.\\\\.@)([?_[:alpha:]][#$.?@_~[:alnum:]]*)(?:(:)?|\\\\b)\",\"name\":\"entity.name.function.asm.x86_64\"},{\"captures\":{\"1\":{\"name\":\"punctuation.separator.asm.x86_64 storage.modifier.asm.x86_64\"},\"2\":{\"name\":\"entity.name.function.asm.x86_64\"},\"3\":{\"name\":\"punctuation.separator.asm.x86_64\"}},\"match\":\"(?:(\\\\.)?|\\\\b)([?_[:alpha:]][#$.?@_~[:alnum:]]*)(:)\",\"name\":\"entity.name.function.asm.x86_64\"},{\"captures\":{\"1\":{\"name\":\"punctuation.separator.asm.x86_64 storage.modifier.asm.x86_64\"},\"2\":{\"name\":\"entity.name.function.asm.x86_64\"},\"3\":{\"name\":\"punctuation.separator.asm.x86_64\"}},\"match\":\"(\\\\.)([0-9]+[#$.?@_~[:alnum:]]*)(?:(:)?|\\\\b)\",\"name\":\"entity.name.function.asm.x86_64\"},{\"captures\":{\"1\":{\"name\":\"punctuation.separator.asm.x86_64 storage.modifier.asm.x86_64\"},\"2\":{\"name\":\"invalid.illegal.entity.name.function.asm.x86_64\"},\"3\":{\"name\":\"punctuation.separator.asm.x86_64\"}},\"match\":\"(?:(\\\\.)?|\\\\b)([$0-9@~][#$.?@_~[:alnum:]]*)(:)\",\"name\":\"invalid.illegal.entity.name.function.asm.x86_64\"}]},\"mnemonics\":{\"patterns\":[{\"include\":\"#mnemonics-general-purpose\"},{\"include\":\"#mnemonics-fpu\"},{\"include\":\"#mnemonics-mmx\"},{\"include\":\"#mnemonics-sse\"},{\"include\":\"#mnemonics-sse2\"},{\"include\":\"#mnemonics-sse3\"},{\"include\":\"#mnemonics-sse4\"},{\"include\":\"#mnemonics-aesni\"},{\"include\":\"#mnemonics-avx\"},{\"include\":\"#mnemonics-avx2\"},{\"include\":\"#mnemonics-tsx\"},{\"include\":\"#mnemonics-sha\"},{\"include\":\"#mnemonics-avx512\"},{\"include\":\"#mnemonics-system\"},{\"include\":\"#mnemonics-64bit\"},{\"include\":\"#mnemonics-vmx\"},{\"include\":\"#mnemonics-smx\"},{\"include\":\"#mnemonics-mpx\"},{\"include\":\"#mnemonics-sgx\"},{\"include\":\"#mnemonics-cet\"},{\"include\":\"#mnemonics-amx\"},{\"include\":\"#mnemonics-uirq\"},{\"include\":\"#mnemonics-esi\"},{\"include\":\"#mnemonics-speculation\"},{\"include\":\"#mnemonics-intel-manual-listing\"},{\"include\":\"#mnemonics-intel-isa-xeon-phi\"},{\"include\":\"#mnemonics-intel-isa-keylocker\"},{\"include\":\"#mnemonics-supplemental-amd\"},{\"include\":\"#mnemonics-supplemental-cyrix\"},{\"include\":\"#mnemonics-supplemental-via\"},{\"include\":\"#mnemonics-undocumented\"},{\"include\":\"#mnemonics-future-intel\"},{\"include\":\"#mnemonics-pseudo-ops\"}]},\"mnemonics-64bit\":{\"patterns\":[{\"match\":\"(?i)\\\\b(cdqe|cqo|(cmp|lod|mov|sto)sq|cmpxchg16b|mov(ntq|sxd)|scasq|swapgs|sys(call|ret))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.64-bit-mode\"}]},\"mnemonics-aesni\":{\"patterns\":[{\"match\":\"(?i)\\\\b(aes((dec|enc)(last)?|imc|keygenassist)|pclmulqdq)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.aesni\"}]},\"mnemonics-amx\":{\"patterns\":[{\"match\":\"(?i)\\\\b((ld|st)tilecfg|tdpb(f16ps|[su]{2}d)|tile(loadd(t1)?|release|stored|zero))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.amx\"}]},\"mnemonics-avx\":{\"patterns\":[{\"match\":\"(?i)\\\\b(v((test|permil|maskmov)p[ds]|zero(all|upper)|(perm2|insert|extract|broadcast)f128|broadcasts[ds]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx\"},{\"match\":\"(?i)\\\\b(v(?:aes((dec|enc)(last)?|imc|keygenassist)|pclmulqdq))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.aes\"},{\"match\":\"(?i)\\\\b(v((cmp[ps]|u?comis)[ds]|pcmp([ei]str[im]|(eq|gt)[bdqw])))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.comparison\"},{\"match\":\"(?i)\\\\b(v(cvt(dq2pd|dq2ps|pd2ps|ps2pd|sd2ss|si2sd|si2ss|ss2sd|t?(pd2dq|ps2dq|sd2si|ss2si))))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.conversion\"},{\"match\":\"(?i)\\\\b(v(?:h((add|sub)p[ds])|ph((add|sub)([dw]|sw)|minposuw)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.horizontal-packed-arithmetic\"},{\"match\":\"(?i)\\\\b(v((andn?|x?or)p[ds]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.logical\"},{\"match\":\"(?i)\\\\b(v(mov(([ahl]|msk|nt|u)p[ds]|(hl|lh)ps|s([ds]|[hl]dup)|q)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.mov\"},{\"match\":\"(?i)\\\\b(v((add|div|mul|sub|max|min|round|sqrt)[ps][ds]|(addsub|dp)p[ds]|(r(?:cp|sqrt))[ps]s))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.packed-arithmetic\"},{\"match\":\"(?i)\\\\b(v(pack[su]s(dw|wb)|punpck[hl](bw|dq|wd|qdq)|unpck[hl]p[ds]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.packed-conversion\"},{\"match\":\"(?i)\\\\b(v(?:p(shuf([bd]|[hl]w))|shufp[ds]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.packed-shuffle\"},{\"match\":\"(?i)\\\\b(vp((abs|sign|(m(?:ax|in))[su])[bdw]|(add|sub)([bdqw]|u?s[bw])|avg[bw]|extr[bdqw]|madd(wd|ubsw)|mul(hu?w|hrsw|l[dw]|u?dq)|sadbw))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.supplemental.arithmetic\"},{\"match\":\"(?i)\\\\b(vp(andn?|x?or))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.supplemental.logical\"},{\"match\":\"(?i)\\\\b(vpblend(vb|w))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.supplemental.blending\"},{\"match\":\"(?i)\\\\b(vpmov(mskb|[sz]x(b[dqw]|w[dq]|dq)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.supplemental.mov\"},{\"match\":\"(?i)\\\\b(vp(insr[bdqw]|sll(dq|[dqw])|srl(dq)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.simd-integer\"},{\"match\":\"(?i)\\\\b(vp(sr(?:a[dqw]|l[dqw])))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.shift-and-rotate\"},{\"match\":\"(?i)\\\\b(vblendv?p[ds])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.packed-blending\"},{\"match\":\"(?i)\\\\b(vp(test|alignr))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.packed-other\"},{\"match\":\"(?i)\\\\b(vmov(d(dup|qa|qu)?))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.simd-integer.mov\"},{\"match\":\"(?i)\\\\b(v((extract|insert)ps|lddqu|(ld|st)mxcsr|mpsadbw))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.other\"},{\"match\":\"(?i)\\\\b(v(m(?:askmovdqu|ovntdqa?)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx.promoted.cacheability-control\"},{\"match\":\"(?i)\\\\b(vcvt(p(?:h2ps|s2ph)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.16-bit-floating-point-conversion\"},{\"match\":\"(?i)\\\\b(vf(?:n?m((add|sub)(132|213|231)[ps][ds])|m((addsub|subadd)(132|213|231)p[ds])))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.fma\"}]},\"mnemonics-avx2\":{\"patterns\":[{\"match\":\"(?i)\\\\b(v((broadcast|extract|insert|perm2)i128|pmaskmov[dq]|perm([dqs]|p[ds])))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx2.promoted.simd\"},{\"match\":\"(?i)\\\\b(vpbroadcast[bdqw])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx2.promoted.packed\"},{\"match\":\"(?i)\\\\b(vp(blendd|s[lr]lv[dq]|sravd))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx2.blend\"},{\"match\":\"(?i)\\\\b(v(?:p?gather[dq][dq]|gather([dq]|dq)p[ds]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx2.gather\"}]},\"mnemonics-avx512\":{\"patterns\":[{\"include\":\"#mnemonics-avx512f\"},{\"include\":\"#mnemonics-avx512dq\"},{\"include\":\"#mnemonics-avx512bw\"},{\"include\":\"#mnemonics-avx512-opmask\"},{\"include\":\"#mnemonics-avx512er\"},{\"include\":\"#mnemonics-avx512pf\"},{\"include\":\"#mnemonics-avx512fp16\"}]},\"mnemonics-avx512-opmask\":{\"patterns\":[{\"match\":\"(?i)\\\\bk(add|andn?|mov|not|or(test)?|shift[lr]|test|xn?or)[bdqw]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.opmask\"},{\"match\":\"(?i)\\\\bkunpck(bw|wd|dq)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.opmask.unpack\"}]},\"mnemonics-avx512bw\":{\"patterns\":[{\"match\":\"(?i)\\\\bv(dbpsadbw|movdqu(8|16))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.bw.dbpsad\"},{\"match\":\"(?i)\\\\bvp(blendm|cmpu?|movm2)[bw]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.bw.pblend\"},{\"match\":\"(?i)\\\\bvperm(w|i2[bw])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.bw.perpmi2\"},{\"match\":\"(?i)\\\\bvp(mov([bw]2m|u?swb))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.bw.pmov\"},{\"match\":\"(?i)\\\\bvp(s(ll|ra|rl)vw|testn?m[bw])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.bw.psll\"},{\"match\":\"(?i)\\\\bvp(broadcastm(b2q|w2d)|(conflict|lzcnt)[dq])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.bw.broadcast\"}]},\"mnemonics-avx512dq\":{\"patterns\":[{\"match\":\"(?i)\\\\bvcvt(t?p[ds]2u?qq|uqq2p[ds])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.dq.cvt\"},{\"match\":\"(?i)\\\\bv((extract|insert)[fi]64x2|(fpclass|range|reduce)[ps][ds])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.dq.extract\"},{\"match\":\"(?i)\\\\bvp(m(?:ov(m2[dq]|b2d|q2m)|ullq))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.dq.pmov\"}]},\"mnemonics-avx512er\":{\"patterns\":[{\"match\":\"(?i)\\\\bv(exp2|rcp28|rsqrt28)[ps][ds]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.er\"}]},\"mnemonics-avx512f\":{\"patterns\":[{\"match\":\"(?i)\\\\bv(align[dq]|(blendm|compress)p[ds])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.align\"},{\"match\":\"(?i)\\\\bv(cvtt?[ps][ds]2u(dq|si))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.cvtt\"},{\"match\":\"(?i)\\\\bv(cvt((q|ud)q2p|usi2s)[ds])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.cvt\"},{\"match\":\"(?i)\\\\bv(expandp[ds]|extract[fi](32|64)x4|fixupimm[ps][ds])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.expand\"},{\"match\":\"(?i)\\\\bv(get(exp|mant)[ps][ds]|insertf(32|64)x4|movdq[au](32|64))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.getexp\"},{\"match\":\"(?i)\\\\bvp(blendm[dq]|cmpu?[dq]|compress[dq])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.pblend\"},{\"match\":\"(?i)\\\\bvp(erm[it]2([dq]|p[ds])|expand[dq]|(m(?:ax|in))[su]q|movu?s(q[bdw]|d[bw]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.permi\"},{\"match\":\"(?i)\\\\bvp(rolv?|rorr?|scatter[dq]|testn?m|terlog)[dq]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.prol\"},{\"match\":\"(?i)\\\\bvpsravq\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.sravq\"},{\"match\":\"(?i)\\\\bv(rcp14|(rnd)?scale|rsqrt14)[ps][ds]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.rcp\"},{\"match\":\"(?i)\\\\bv(s(?:catter[dq]{2}|huf[fi](32|64)x[24]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.f.scatter\"}]},\"mnemonics-avx512fp16\":{\"patterns\":[{\"match\":\"(?i)\\\\bv((add|cmp|div|fc?(m(?:add|ul))c|fpclass|get(exp|mant)|mul|rcp|reduce|(rnd)?scale|r?sqrt|sub)[ps]h|u?comish)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.fp16.add\"},{\"match\":\"(?i)\\\\bvcvt(u?([dq]q|w)|pd)2ph\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.fp16.cvtx2ph\"},{\"match\":\"(?i)\\\\bvcvtph2(u?([dq]q|w)|pd)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.fp16.cvtph2x\"},{\"match\":\"(?i)\\\\bvcvt(p(?:h2psx|s2phx))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.fp16.cvtx\"},{\"match\":\"(?i)\\\\bvcvt(s[dis]|usi)2sh\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.fp16.cvtx2sh\"},{\"match\":\"(?i)\\\\bvcvtsh2(s[dis]|usi)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.fp16.cvtsh2x\"},{\"match\":\"(?i)\\\\bvcvtt(ph2(u?(dq|qq|w))|sh2u?si)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.fp16.cvttph2x\"},{\"match\":\"(?i)\\\\bvfn?m((add|sub)(132|213|231))[ps]h\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.fp16.fmadd\"},{\"match\":\"(?i)\\\\bvfm(addsub|subadd)(132|213|231)ph\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.fp16.fmaddsub\"},{\"match\":\"(?i)\\\\bv((m(?:in|ax))ph|mov(sh|w))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.fp16.max\"}]},\"mnemonics-avx512pf\":{\"patterns\":[{\"match\":\"(?i)\\\\bv(gather|scatter)pf[01][dq]p[ds]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.avx512.pf\"}]},\"mnemonics-cet\":{\"patterns\":[{\"match\":\"(?i)\\\\b((inc|save(prev)?|rstor|rd)ssp|wru?ss|(set|clr)ssbsy|endbr(32|64))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.cet\"},{\"match\":\"(?i)\\\\bendbranch\\\\b\",\"name\":\"keyword.operator.word.mnemonic.cet.misc\"}]},\"mnemonics-esi\":{\"patterns\":[{\"match\":\"(?i)\\\\benqcmds?\\\\b\",\"name\":\"keyword.operator.word.mnemonic.esi\"}]},\"mnemonics-fpu\":{\"patterns\":[{\"match\":\"(?i)\\\\b(fcmov(n?([beu]|be)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.fpu.data-transfer.mov\"},{\"match\":\"(?i)\\\\b(f(i?(ld|stp?)|b(ld|stp)|xch))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.fpu.data-transfer.other\"},{\"match\":\"(?i)\\\\b(f((add|div|mul|sub)p?|i(add|div|mul|sub)|(div|sub)rp?|i(div|sub)r))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.fpu.basic-arithmetic.basic\"},{\"match\":\"(?i)\\\\b(f(prem1?|abs|chs|rndint|scale|sqrt|xtract))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.fpu.basic-arithmetic.other\"},{\"match\":\"(?i)\\\\b(f(u?com[ip]?p?|icomp?|tst|xam))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.fpu.comparison\"},{\"match\":\"(?i)\\\\b(f(sin|cos|sincos|pa?tan|2xm1|yl2x(p1)?))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.fpu.transcendental\"},{\"match\":\"(?i)\\\\b(fld([1z]|pi|l2[et]|l[gn]2))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.fpu.load-constants\"},{\"match\":\"(?i)\\\\b(f((inc|dec)stp|free|n?(init|clex|st[cs]w|stenv|save)|ld(cw|env)|rstor|nop)|f?wait)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.fpu.control-management\"},{\"match\":\"(?i)\\\\b(fx(save|rstor)(64)?)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.fpu.state-management\"}]},\"mnemonics-future-intel\":{\"patterns\":[{\"include\":\"#mnemonics-future-intel-apx\"}]},\"mnemonics-future-intel-apx\":{\"patterns\":[{\"match\":\"(?i)\\\\b(c(cmp|test)(n?[bl]e?|[ft]|n?[osz]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.apx.ccmp_test\"},{\"match\":\"(?i)\\\\b(cfcmovn?([bl]e?|[opsz]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.apx.cfcmov\"},{\"match\":\"(?i)\\\\b(cmpn?([bl]e?|[opsz])xadd)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.apx.cmpxadd\"},{\"match\":\"(?i)\\\\b(jmpabs|(p(?:ush|op))2p?)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.apx.other\"}]},\"mnemonics-general-purpose\":{\"patterns\":[{\"match\":\"(?i)\\\\b(?:mov(?:[sz]x)?|cmov(?:n?[abceglopsz]|n?[abgl]e|p[eo]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.data-transfer.mov\"},{\"match\":\"(?i)\\\\b(xchg|bswap|xadd|cmpxchg(8b)?)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.data-transfer.xchg\"},{\"match\":\"(?i)\\\\b((p(?:ush|op))(ad?)?|cwde?|cdq|cbw)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.data-transfer.other\"},{\"match\":\"(?i)\\\\b(adcx?|adox|add|sub|sbb|i?mul|i?div|inc|dec|neg|cmp)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.binary-arithmetic\"},{\"match\":\"(?i)\\\\b(daa|das|aaa|aas|aam|aad)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.decimal-arithmetic\"},{\"match\":\"(?i)\\\\b(and|x?or|not)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.logical\"},{\"match\":\"(?i)\\\\b(s[ah][lr]|sh[lr]d|r[co][lr])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.rotate\"},{\"match\":\"(?i)\\\\b(set(n?[abceglopsz]|n?[abgl]e|p[eo]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.bit-and-byte.set\"},{\"match\":\"(?i)\\\\b(bt[crs]?|bs[fr]|test|crc32|popcnt)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.bit-and-byte.other\"},{\"match\":\"(?i)\\\\b(j(?:mp|n?[abceglopsz]|n?[abgl]e|p[eo]|[er]?cxz))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.control-transfer.jmp\"},{\"match\":\"(?i)\\\\b(loop(n?[ez])?|call|ret|iret[dq]?|into?|bound|enter|leave)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.control-transfer.other\"},{\"match\":\"(?i)\\\\b((mov|cmp|sca|lod|sto)(s[bdw]?)|rep(n?[ez])?)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.strings\"},{\"match\":\"(?i)\\\\b((in|out)(s[bdw]?)?)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.io\"},{\"match\":\"(?i)\\\\b((st|cl)[cdi]|cmc|[ls]ahf|(p(?:ush|op))f[dq]?)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.flag-control\"},{\"match\":\"(?i)\\\\b(l[d-gs]s)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.segment-registers\"},{\"match\":\"(?i)\\\\b(lea|nop|ud2?|xlatb?|cpuid|movbe)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.misc\"},{\"match\":\"(?i)\\\\b(cl(flush(opt)?|demote|wb)|pcommit)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.cache-control\"},{\"match\":\"(?i)\\\\b(rd(?:rand|seed))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.rng\"},{\"match\":\"(?i)\\\\b(andn|bextr|bls([ir]|msk)|bzhi|pdep|pext|[lt]zcnt|(mul|ror|sar|shl|shr)x)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.general-purpose.bmi\"}]},\"mnemonics-intel-isa-keylocker\":{\"patterns\":[{\"match\":\"(?i)\\\\b(aes(enc|dec)(wide)?(128|256)kl|encodekey(128|256)|loadiwkey)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.keylocker\"}]},\"mnemonics-intel-isa-xeon-phi\":{\"patterns\":[{\"match\":\"(?i)\\\\bv(4fn?(madd)[ps]s|p4dpwssds?)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.xeon-phi\"}]},\"mnemonics-intel-manual-listing\":{\"patterns\":[{\"match\":\"(?i)\\\\bcvtt?pd1pi\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.c\"},{\"match\":\"(?i)\\\\bv?gf2p8(affine(inv)?q|mul)b\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.g\"},{\"match\":\"(?i)\\\\bhreset\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.h\"},{\"match\":\"(?i)\\\\bincssp[dq]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.i\"},{\"match\":\"(?i)\\\\bmovdir(i|64b)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.m\"},{\"match\":\"(?i)\\\\bp((abs|(m(?:ax|in))[su]?|mull|sra)q|config|twrite)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.p\"},{\"match\":\"(?i)\\\\brd(pid|ssp[dq])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.r\"},{\"match\":\"(?i)\\\\bserialize\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.s\"},{\"match\":\"(?i)\\\\btpause\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.t\"},{\"match\":\"(?i)\\\\bu(m(?:onitor|wait))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.u\"},{\"match\":\"(?i)\\\\bvbroadcast[fi](32x[248]|64x[24])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vb\"},{\"match\":\"(?i)\\\\bv(c(?:ompressw|vtne2?ps2bf16))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vc\"},{\"match\":\"(?i)\\\\bvdpbf16ps\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vd\"},{\"match\":\"(?i)\\\\bvextract[fi]32x8\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.ve\"},{\"match\":\"(?i)\\\\bv(insert([fi]32x8|i(32|64)x4))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vi\"},{\"match\":\"(?i)\\\\bv(maskmov|(m(?:ax|in))sh)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vm\"},{\"match\":\"(?i)\\\\bvp((2intersect|andn?)[dq]|absq)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vpa\"},{\"match\":\"(?i)\\\\bvpbroadcasti32x4\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vpb\"},{\"match\":\"(?i)\\\\bvpcompress[bw]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vpc\"},{\"match\":\"(?i)\\\\bvp(dp(bu|ws)sds?)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vpd\"},{\"match\":\"(?i)\\\\b(vp(?:erm(b|t2[bw])|(ex(?:pand[bw]|trtd))))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vpe\"},{\"match\":\"(?i)\\\\bvp(m(?:add52[hl]uq|ov(d(2m|[bw])|q[bdw]|wb)|pov[bdqw]2m|ultishiftqb))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vpm\"},{\"match\":\"(?i)\\\\b(vpo(?:pcnt[bdqw]|r[dq]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vpo\"},{\"match\":\"(?i)\\\\bvprorv[dq]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vpr\"},{\"match\":\"(?i)\\\\bvp(sh(?:[lr]dv?[dqw]|ufbitqmb|ufps))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vps\"},{\"match\":\"(?i)\\\\bvpternlog[dq]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vpt\"},{\"match\":\"(?i)\\\\bvpxor[dq]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vpx\"},{\"match\":\"(?i)\\\\bv(sca(?:lef[ps][dhs]|tter[dq]p[ds]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.vs\"},{\"match\":\"(?i)\\\\b(w(?:bnoinvd|ru?ss[dq]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.other.w\"}]},\"mnemonics-invalid\":{\"patterns\":[{\"include\":\"#mnemonics-invalid-amd-sse5\"}]},\"mnemonics-invalid-amd-sse5\":{\"patterns\":[{\"match\":\"(?i)\\\\b(com[ps][ds]|pcomu?[bdqw])\\\\b\",\"name\":\"invalid.keyword.operator.word.mnemonic.sse5.comparison\"},{\"match\":\"(?i)\\\\b(cvtp(h2ps|s2ph)|frcz[ps][ds])\\\\b\",\"name\":\"invalid.keyword.operator.word.mnemonic.sse5.conversion\"},{\"match\":\"(?i)\\\\b(fn?m((add|sub)[ps][ds])|ph(addu?(b[dqw]|w[dq]|dq)|sub(bw|dq|wd))|pma(css?(d(d|q[hl])|w[dw])|dcss?wd))\\\\b\",\"name\":\"invalid.keyword.operator.word.mnemonic.sse5.packed-arithmetic\"},{\"match\":\"(?i)\\\\b(p(?:cmov|ermp[ds]|perm|rot[bdqw]|sh[al][bdqw]))\\\\b\",\"name\":\"invalid.keyword.operator.word.mnemonic.sse5.simd-integer\"}]},\"mnemonics-mmx\":{\"patterns\":[{\"match\":\"(?i)\\\\b(mov[dq])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.mmx.data-transfer\"},{\"match\":\"(?i)\\\\b(p(?:ack(ssdw|[su]swb)|unpck[hl](bw|dq|wd)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.mmx.conversion\"},{\"match\":\"(?i)\\\\b(p(((add|sub)(d|(u?s)?[bw]))|maddwd|mul[hl]w))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.mmx.packed-arithmetic\"},{\"match\":\"(?i)\\\\b(pcmp((eq|gt)[bdw]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.mmx.comparison\"},{\"match\":\"(?i)\\\\b(p(?:andn?|x?or))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.mmx.logical\"},{\"match\":\"(?i)\\\\b(ps([lr]l[dqw]|raw|rad))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.mmx.shift-and-rotate\"},{\"match\":\"(?i)\\\\b(emms)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.mmx.state-management\"}]},\"mnemonics-mpx\":{\"patterns\":[{\"match\":\"(?i)\\\\b(bnd(mk|c[lnu]|mov|ldx|stx))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.mpx\"}]},\"mnemonics-pseudo-ops\":{\"patterns\":[{\"match\":\"(?i)\\\\b(cmp(n?(eq|lt|le)|(un)?ord)[ps][ds])\\\\b\",\"name\":\"keyword.operator.word.pseudo-mnemonic.sse2.compare\"},{\"match\":\"(?i)\\\\b(v?pclmul([hl]q[hl]q|[hl]qh)dq)\\\\b\",\"name\":\"keyword.operator.word.pseudo-mnemonic.avx.promoted.aes\"},{\"match\":\"(?i)\\\\b(vcmp(eq(_(os|uq|us))?|neq(_(oq|os|us))?|[gl][et](_oq)?|n[gl][et](_uq)?|(un)?ord(_s)?|false(_os)?|true(_us)?)[ps][ds])\\\\b\",\"name\":\"keyword.operator.word.pseudo-mnemonic.avx.promoted.comparison\"},{\"match\":\"(?i)\\\\bvp(cmpn?(eq|le|lt))\\\\b\",\"name\":\"keyword.operator.word.pseudo-mnemonic.avx512.compare\"},{\"match\":\"(?i)\\\\b(vpcom(n?eq|[gl][et]|false|true)(b|uw))\\\\b\",\"name\":\"keyword.operator.word.pseudo-mnemonic.supplemental.amd.xop.simd\"}]},\"mnemonics-sgx\":{\"patterns\":[{\"match\":\"(?i)\\\\bencl[su]\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sgx\"},{\"match\":\"(?i)\\\\be(add|block|create|dbg(rd|wr)|extend|init|ld[bu]|pa|remove|track|wb)\\\\b\",\"name\":\"support.constant.sgx1.supervisor\"},{\"match\":\"(?i)\\\\be(add|block|create|dbg(rd|wr)|extend|init|ld[bu]|pa|remove|track|wb)\\\\b\",\"name\":\"support.constant.sgx1.supervisor\"},{\"match\":\"(?i)\\\\be(enter|exit|getkey|report|resume)\\\\b\",\"name\":\"support.constant.sgx1.user\"},{\"match\":\"(?i)\\\\be(aug|mod(pr|t))\\\\b\",\"name\":\"support.constant.sgx2.supervisor\"},{\"match\":\"(?i)\\\\be(accept(copy)?|modpe)\\\\b\",\"name\":\"support.constant.sgx2.user\"}]},\"mnemonics-sha\":{\"patterns\":[{\"match\":\"(?i)\\\\b(sha(1rnds4|256rnds2|1nexte|(1|256)msg[12]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sha\"}]},\"mnemonics-smx\":{\"patterns\":[{\"match\":\"(?i)\\\\b(getsec)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.smx.getsec\"},{\"match\":\"(?i)\\\\b(capabilities|enteraccs|exitac|senter|sexit|parameters|smctrl|wakeup)\\\\b\",\"name\":\"support.constant.smx\"}]},\"mnemonics-speculation\":{\"patterns\":[{\"match\":\"(?i)\\\\bib(pb|hf)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.speculation\"}]},\"mnemonics-sse\":{\"patterns\":[{\"match\":\"(?i)\\\\b(mov(([ahlu]|hl|lh|msk)ps|ss))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse.data-transfer\"},{\"match\":\"(?i)\\\\b((add|div|max|min|mul|rcp|r?sqrt|sub)[ps]s)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse.packed-arithmetic\"},{\"match\":\"(?i)\\\\b(cmp[ps]s|u?comiss)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse.comparison\"},{\"match\":\"(?i)\\\\b((andn?|x?or)ps)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse.logical\"},{\"match\":\"(?i)\\\\b((shuf|unpck[hl])ps)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse.shuffle-and-unpack\"},{\"match\":\"(?i)\\\\b(cvt(pi2ps|si2ss|ps2pi|tps2pi|ss2si|tss2si))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse.conversion\"},{\"match\":\"(?i)\\\\b((ld|st)mxcsr)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse.state-management\"},{\"match\":\"(?i)\\\\b(p(avg[bw]|extrw|insrw|(m(?:ax|in))(sw|ub)|sadbw|shufw|mulhuw|movmskb))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse.simd-integer\"},{\"match\":\"(?i)\\\\b(maskmovq|movntps|sfence)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse.cacheability-control\"},{\"match\":\"(?i)\\\\b(prefetch(nta|t[012]|w(t1)?))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse.prefetch\"}]},\"mnemonics-sse2\":{\"patterns\":[{\"match\":\"(?i)\\\\b(mov([ahlu]|msk)pd)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse2.data-transfer\"},{\"match\":\"(?i)\\\\b((add|div|max|min|mul|sub|sqrt)[ps]d)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse2.packed-arithmetic\"},{\"match\":\"(?i)\\\\b((andn?|x?or)pd)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse2.logical\"},{\"match\":\"(?i)\\\\b((cmpp|u?comis)d)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse2.compare\"},{\"match\":\"(?i)\\\\b((shuf|unpck[hl])pd)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse2.shuffle-and-unpack\"},{\"match\":\"(?i)\\\\b(cvt(dq2pd|pi2pd|ps2pd|pd2ps|si2sd|sd2ss|ss2sd|t?(pd2dq|pd2pi|sd2si)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse2.conversion\"},{\"match\":\"(?i)\\\\b(cvt(dq2ps|ps2dq|tps2dq))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse2.packed-floating-point\"},{\"match\":\"(?i)\\\\b(mov(dq[au]|q2dq|dq2q))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse2.simd-integer.mov\"},{\"match\":\"(?i)\\\\b(p((add|sub|(s[lr]l|mulu|unpck[hl]q)d)q|shuf(d|[hl]w)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse2.simd-integer.other\"},{\"match\":\"(?i)\\\\b([lm]fence|pause|maskmovdqu|movnt(dq|i|pd))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse2.cacheability-control\"}]},\"mnemonics-sse3\":{\"patterns\":[{\"match\":\"(?i)\\\\b(fisttp|lddqu|(addsub|h(add|sub))p[ds]|mov(sh|sl|d)dup|monitor|mwait)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse3\"},{\"match\":\"(?i)\\\\b(ph(add|sub)(s?w|d))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse3.supplimental.horizontal-packed-arithmetic\"},{\"match\":\"(?i)\\\\b(p((abs|sign)[bdw]|maddubsw|mulhrsw|shufb|alignr))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse3.supplimental.other\"}]},\"mnemonics-sse4\":{\"patterns\":[{\"match\":\"(?i)\\\\b(pmul(ld|dq)|dpp[ds])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse4.1.arithmetic\"},{\"match\":\"(?i)\\\\b(movntdqa)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse4.1.load-hint\"},{\"match\":\"(?i)\\\\b(blendv?p[ds]|pblend(vb|w))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse4.1.packed-blending\"},{\"match\":\"(?i)\\\\b(p(m(?:in|ax))(u[dw]|s[bd]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse4.1.packed-integer\"},{\"match\":\"(?i)\\\\b(round[ps][ds])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse4.1.packed-floating-point\"},{\"match\":\"(?i)\\\\b((extract|insert)ps|p((ins|ext)(r[bdq])))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse4.1.insertion-and-extraction\"},{\"match\":\"(?i)\\\\b(pmov([sz]x(b[dqw]|dq|wd|wq)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse4.1.conversion\"},{\"match\":\"(?i)\\\\b(mpsadbw|phminposuw|ptest|pcmpeqq|packusdw)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse4.1.other\"},{\"match\":\"(?i)\\\\b(pcmp([ei]str[im]|gtq))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.sse4.2\"}]},\"mnemonics-supplemental-amd\":{\"patterns\":[{\"match\":\"(?i)\\\\b(bl([cs](fill|ic?|msk)|cs)|t1mskc|tzmsk)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.general-purpose\"},{\"match\":\"(?i)\\\\b(clgi|int3|invlpga|iretw|skinit|stgi|vm(load|mcall|run|save)|monitorx|mwaitx)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.system\"},{\"match\":\"(?i)\\\\b([ls]lwpcb|lwp(ins|val))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.profiling\"},{\"match\":\"(?i)\\\\b(movnts[ds])\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.memory-management\"},{\"match\":\"(?i)\\\\b(prefetch|clzero)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.cache-management\"},{\"match\":\"(?i)\\\\b((extr|insert)q)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.sse4.a\"},{\"match\":\"(?i)\\\\b(vf(?:n?m((add|sub)[ps][ds])|m((addsub|subadd)p[ds])))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.fma4\"},{\"match\":\"(?i)\\\\b(vp(cmov|(comu?|rot|sh[al])[bdqw]|mac(s?s(d(d|q[hl])|w[dw]))|madcss?wd|perm))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.xop.simd\"},{\"match\":\"(?i)\\\\b(vph(addu?(b[dqw]|w[dq]|dq)|sub(bw|dq|wd)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.xop.simd-horizontal\"},{\"match\":\"(?i)\\\\b(v(?:frcz[ps][ds]|permil2p[ds]))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.xop.other\"},{\"match\":\"(?i)\\\\b(femms)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.3dnow\"},{\"match\":\"(?i)\\\\b(p(?:(avgusb|(f2i|i2f)[dw]|mulhrw|swapd)|f((p?n)?acc|add|max|min|mul|rcp(it[12])?|rsqit1|rsqrt|subr?)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.3dnow.simd\"},{\"match\":\"(?i)\\\\b(pfcmp(eq|ge|gt))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.amd.3dnow.comparison\"}]},\"mnemonics-supplemental-cyrix\":{\"patterns\":[{\"match\":\"(?i)\\\\b((sv|rs)dc|(wr|rd)shr|paddsiw)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.cyrix\"}]},\"mnemonics-supplemental-via\":{\"patterns\":[{\"match\":\"(?i)\\\\b(montmul)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.via\"},{\"match\":\"(?i)\\\\b(x(store(rng)?|crypt(ecb|cbc|ctr|cfb|ofb)|sha(1|256)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.supplemental.via.padlock\"}]},\"mnemonics-system\":{\"patterns\":[{\"match\":\"(?i)\\\\b((cl|st)ac|[ls]([gil]dt|tr|msw)|clts|arpl|lar|lsl|ver[rw]|inv(d|lpg|pcid)|wbinvd)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.system\"},{\"match\":\"(?i)\\\\b(lock|hlt|rsm|(rd|wr)(msr|pkru|[fg]sbase)|rd(pmc|tscp?)|sys(e(?:nter|xit)))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.system\"},{\"match\":\"(?i)\\\\b(x((save(c|opt|s)?|rstors?)(64)?|[gs]etbv))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.system\"}]},\"mnemonics-tsx\":{\"patterns\":[{\"match\":\"(?i)\\\\b(x(abort|begin|end|test|(res|sus)ldtrk))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.tsx\"}]},\"mnemonics-uirq\":{\"patterns\":[{\"match\":\"(?i)\\\\b((cl|st|test)ui|senduipi|uiret)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.uirq\"}]},\"mnemonics-undocumented\":{\"patterns\":[{\"match\":\"(?i)\\\\b(ret[fn]|icebp|int1|int03|smi|ud1)\\\\b\",\"name\":\"keyword.operator.word.mnemonic.undocumented\"}]},\"mnemonics-vmx\":{\"patterns\":[{\"match\":\"(?i)\\\\b(vm(ptr(ld|st)|clear|read|write|launch|resume|xo(ff|n)|call|func)|inv(ept|vpid))\\\\b\",\"name\":\"keyword.operator.word.mnemonic.vmx\"}]},\"preprocessor\":{\"patterns\":[{\"begin\":\"^\\\\s*[#%]\\\\s*(error|warning)\\\\b\",\"captures\":{\"1\":{\"name\":\"keyword.control.import.error.c\"}},\"end\":\"$\",\"name\":\"meta.preprocessor.diagnostic.c\",\"patterns\":[{\"match\":\"(?>\\\\\\\\\\\\s*\\\\n)\",\"name\":\"punctuation.separator.continuation.c\"}]},{\"begin\":\"^\\\\s*[#%]\\\\s*(i(?:nclude|mport))\\\\b\\\\s+\",\"captures\":{\"1\":{\"name\":\"keyword.control.import.include.c\"}},\"end\":\"(?=/[*/])|$\",\"name\":\"meta.preprocessor.c.include\",\"patterns\":[{\"match\":\"(?>\\\\\\\\\\\\s*\\\\n)\",\"name\":\"punctuation.separator.continuation.c\"},{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.c\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.c\"}},\"name\":\"string.quoted.double.include.c\"},{\"begin\":\"<\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.c\"}},\"end\":\">\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.c\"}},\"name\":\"string.quoted.other.lt-gt.include.c\"}]},{\"begin\":\"^\\\\s*[#%]\\\\s*(i?x?define|defined|elif(def)?|else|i[fs]n?(?:def|macro|ctx|idni?|id|num|str|token|empty|env)?|line|(i|end|uni?)?macro|pragma|endif)\\\\b\",\"captures\":{\"1\":{\"name\":\"keyword.control.import.c\"}},\"end\":\"(?=/[*/])|$\",\"name\":\"meta.preprocessor.c\",\"patterns\":[{\"match\":\"(?>\\\\\\\\\\\\s*\\\\n)\",\"name\":\"punctuation.separator.continuation.c\"},{\"include\":\"#preprocessor-functions\"}]},{\"begin\":\"^\\\\s*[#%]\\\\s*(assign|strlen|substr|(e(?:nd|xit))?rep|push|pop|rotate|use|ifusing|ifusable|def(?:ailas|str|tok)|undef(?:alias)?)\\\\b\",\"captures\":{\"1\":{\"name\":\"keyword.control\"}},\"end\":\"$\",\"name\":\"meta.preprocessor.nasm\",\"patterns\":[{\"match\":\"(?>\\\\\\\\\\\\s*\\\\n)\",\"name\":\"punctuation.separator.continuation.c\"},{\"include\":\"#preprocessor-functions\"}]}]},\"preprocessor-functions\":{\"patterns\":[{\"begin\":\"((%)(abs|cond|count|eval|isn?(?:def|macro|ctx|idni?|id|num|str|token|empty|env)?|num|sel|str(?:cat|len)?|substr|tok)\\\\s*(\\\\())\",\"captures\":{\"3\":{\"name\":\"support.function.preprocessor.asm.x86_64\"}},\"end\":\"(\\\\))|$\",\"name\":\"meta.preprocessor.function.asm.x86_64\",\"patterns\":[{\"include\":\"#preprocessor-functions\"}]}]},\"registers\":{\"patterns\":[{\"match\":\"(?i)\\\\b(?:[a-d][hl]|[er]?[a-d]x|[er]?(?:di|si|bp|sp)|dil|sil|bpl|spl|r(?:[89]|1[0-5])[bdlw]?)\\\\b\",\"name\":\"constant.language.register.general-purpose.asm.x86_64\"},{\"match\":\"(?i)\\\\b[c-gs]s\\\\b\",\"name\":\"constant.language.register.segment.asm.x86_64\"},{\"match\":\"(?i)\\\\b[er]?flags\\\\b\",\"name\":\"constant.language.register.flags.asm.x86_64\"},{\"match\":\"(?i)\\\\b[er]?ip\\\\b\",\"name\":\"constant.language.register.instruction-pointer.asm.x86_64\"},{\"match\":\"(?i)\\\\bcr[0234]\\\\b\",\"name\":\"constant.language.register.control.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:mm|st|fpr)[0-7]\\\\b\",\"name\":\"constant.language.register.mmx.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:[xy]mm(?:[0-9]|1[0-5])|mxcsr)\\\\b\",\"name\":\"constant.language.register.sse_avx.asm.x86_64\"},{\"match\":\"(?i)\\\\bzmm(?:[12]?[0-9]|30|31)\\\\b\",\"name\":\"constant.language.register.avx512.asm.x86_64\"},{\"match\":\"(?i)\\\\bbnd(?:[0-3]|cfg[su]|status)\\\\b\",\"name\":\"constant.language.register.memory-protection.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:[gil]dtr?|tr)\\\\b\",\"name\":\"constant.language.register.system-table-pointer.asm.x86_64\"},{\"match\":\"(?i)\\\\bdr[0-367]\\\\b\",\"name\":\"constant.language.register.debug.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:cr8|dr(?:[89]|1[0-5])|efer|tpr|syscfg)\\\\b\",\"name\":\"constant.language.register.amd.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:db[0-367]|t[67]|tr[3-7]|st)\\\\b\",\"name\":\"invalid.deprecated.constant.language.register.asm.x86_64\"},{\"match\":\"(?i)\\\\b[xy]mm(?:1[6-9]|2[0-9]|3[01])\\\\b\",\"name\":\"constant.language.register.general-purpose.alias.asm.x86_64\"}]},\"strings\":{\"patterns\":[{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.asm\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.asm\"}},\"name\":\"string.quoted.double.asm\",\"patterns\":[{\"include\":\"#string_escaped_char\"},{\"include\":\"#string_placeholder\"}]},{\"begin\":\"'\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.asm\"}},\"end\":\"'\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.asm\"}},\"name\":\"string.quoted.single.asm\",\"patterns\":[{\"include\":\"#string_escaped_char\"},{\"include\":\"#string_placeholder\"}]},{\"begin\":\"`\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.asm\"}},\"end\":\"`\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.asm\"}},\"name\":\"string.quoted.backquote.asm\",\"patterns\":[{\"include\":\"#string_escaped_char\"},{\"include\":\"#string_placeholder\"}]}]},\"support\":{\"patterns\":[{\"match\":\"(?i)\\\\b(?:s?byte|(?:[doqtyz]|dq|s[dq]?)?word|(?:d|res)[bdoqtwyz]|ddq)\\\\b\",\"name\":\"storage.type.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:incbin|equ|times|dup)\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:strict|nosplit|near|far|abs|rel)\\\\b\",\"name\":\"storage.modifier.asm.x86_64\"},{\"match\":\"(?i)\\\\b[ao](?:16|32|64)\\\\b\",\"name\":\"storage.modifier.prefix.asm.x86_64\"},{\"match\":\"(?i)\\\\b(?:rep(?:n?[ez])?|lock|xacquire|xrelease|(?:no)?bnd)\\\\b\",\"name\":\"storage.modifier.prefix.asm.x86_64\"},{\"captures\":{\"1\":{\"name\":\"storage.modifier.prefix.vex.asm.x86_64\"}},\"match\":\"\\\\{(vex[23]?|evex|rex)}\"},{\"captures\":{\"1\":{\"name\":\"storage.modifier.opmask.asm.x86_64\"}},\"match\":\"\\\\{(k[1-7])}\"},{\"captures\":{\"1\":{\"name\":\"storage.modifier.precision.asm.x86_64\"}},\"match\":\"\\\\{(1to(?:8|16))}\"},{\"captures\":{\"1\":{\"name\":\"storage.modifier.rounding.asm.x86_64\"}},\"match\":\"\\\\{(z|(?:r[dnuz]-)?sae)}\"},{\"match\":\"\\\\.\\\\.(?:start|imagebase|tlvp|got(?:pc(?:rel)?|(?:tp)?off)?|plt|sym|tlsie)\\\\b\",\"name\":\"support.constant.asm.x86_64\"},{\"match\":\"\\\\b__\\\\?(?:utf(?:16|32)(?:[bl]e)?|float(?:8|16|32|64|80[em]|128[hl])|bfloat16|Infinity|[QS]?NaN)\\\\?__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b__(?:utf(?:16|32)(?:[bl]e)?|float(?:8|16|32|64|80[em]|128[hl])|bfloat16|Infinity|[QS]?NaN)__\\\\b\",\"name\":\"support.function.legacy.asm.x86_64\"},{\"match\":\"\\\\b__\\\\?NASM_(?:MAJOR|(?:SUB)?MINOR|SNAPSHOT|VER(?:SION_ID)?)\\\\?__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b___\\\\?NASM_PATCHLEVEL\\\\?__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b__\\\\?(?:FILE|LINE|BITS|OUTPUT_FORMAT|DEBUG_FORMAT)\\\\?__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b__\\\\?(?:(?:UTC_)?(?:DATE|TIME)(?:_NUM)?|POSIX_TIME)\\\\?__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b__\\\\?USE_\\\\w+\\\\?__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b__\\\\?PASS\\\\?__\\\\b\",\"name\":\"invalid.deprecated.support.constant.altreg.asm.x86_64\"},{\"match\":\"\\\\b__\\\\?ALIGNMODE\\\\?__\\\\b\",\"name\":\"support.constant.smartalign.asm.x86_64\"},{\"match\":\"\\\\b__\\\\?ALIGN_(\\\\w+)\\\\?__\\\\b\",\"name\":\"support.function.smartalign.asm.x86_64\"},{\"match\":\"\\\\b__NASM_(?:MAJOR|(?:SUB)?MINOR|SNAPSHOT|VER(?:SION_ID)?)__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b___NASM_PATCHLEVEL__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b__(?:FILE|LINE|BITS|OUTPUT_FORMAT|DEBUG_FORMAT)__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b__(?:(?:UTC_)?(?:DATE|TIME)(?:_NUM)?|POSIX_TIME)__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b__USE_\\\\w+__\\\\b\",\"name\":\"support.function.asm.x86_64\"},{\"match\":\"\\\\b__PASS__\\\\b\",\"name\":\"invalid.deprecated.support.constant.altreg.asm.x86_64\"},{\"match\":\"\\\\b__ALIGNMODE__\\\\b\",\"name\":\"support.constant.smartalign.asm.x86_64\"},{\"match\":\"\\\\b__ALIGN_(\\\\w+)__\\\\b\",\"name\":\"support.function.smartalign.asm.x86_64\"},{\"match\":\"\\\\b(?:Inf|[QS]?NaN)\\\\b\",\"name\":\"support.constant.fp.asm.x86_64\"},{\"match\":\"\\\\bfloat(?:8|16|32|64|80[em]|128[hl])\\\\b\",\"name\":\"support.function.fp.asm.x86_64\"},{\"match\":\"(?i)\\\\bilog2(?:[cefw]|[cf]w)?\\\\b\",\"name\":\"support.function.ifunc.asm.x86_64\"}]}},\"scopeName\":\"source.asm.x86_64\"}"))];
2
+ export { asm_default as default };
@@ -0,0 +1,16 @@
1
+ import javascript_default from "./javascript.js";
2
+ import css_default from "./css.js";
3
+ import json_default from "./json.js";
4
+ import typescript_default from "./typescript.js";
5
+ import postcss_default from "./postcss.js";
6
+ import tsx_default from "./tsx.js";
7
+ var lang = Object.freeze(JSON.parse("{\"displayName\":\"Astro\",\"fileTypes\":[\"astro\"],\"injections\":{\"L:(meta.script.astro) (meta.lang.js | meta.lang.javascript | meta.lang.partytown | meta.lang.node) - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.js\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.js\"}]}]},\"L:(meta.script.astro) (meta.lang.json) - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.json\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.json\"}]}]},\"L:(meta.script.astro) (meta.lang.ts | meta.lang.typescript) - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.ts\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.ts\"}]}]},\"L:meta.script.astro - meta.lang - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.js\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.js\"}]}]},\"L:meta.style.astro - meta.lang - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.css\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.css\"}]}]},\"L:meta.style.astro meta.lang.css - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.css\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.css\"}]}]},\"L:meta.style.astro meta.lang.less - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.css.less\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.css.less\"}]}]},\"L:meta.style.astro meta.lang.postcss - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.css.postcss\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.css.postcss\"}]}]},\"L:meta.style.astro meta.lang.sass - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.sass\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.sass\"}]}]},\"L:meta.style.astro meta.lang.scss - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.css.scss\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.css.scss\"}]}]},\"L:meta.style.astro meta.lang.stylus - (meta source)\":{\"patterns\":[{\"begin\":\"(?<=>)(?!</)\",\"contentName\":\"source.stylus\",\"end\":\"(?=</)\",\"name\":\"meta.embedded.block.astro\",\"patterns\":[{\"include\":\"source.stylus\"}]}]}},\"name\":\"astro\",\"patterns\":[{\"include\":\"#scope\"},{\"include\":\"#frontmatter\"},{\"include\":\"#text\"}],\"repository\":{\"attribute-literal\":{\"begin\":\"(`)\",\"end\":\"\\\\1\",\"name\":\"string.template.astro\",\"patterns\":[{\"include\":\"source.tsx#template-substitution-element\"},{\"include\":\"source.tsx#string-character-escape\"}]},\"attributes\":{\"patterns\":[{\"include\":\"#attributes-events\"},{\"include\":\"#attributes-keyvalue\"},{\"include\":\"#attributes-interpolated\"}]},\"attributes-events\":{\"begin\":\"(on(s(croll|t(orage|alled)|u(spend|bmit)|e(curitypolicyviolation|ek(ing|ed)|lect))|hashchange|c(hange|o(ntextmenu|py)|u(t|echange)|l(ick|ose)|an(cel|play(through)?))|t(imeupdate|oggle)|in(put|valid)|o((?:n|ff)line)|d(urationchange|r(op|ag(start|over|e(n(ter|d)|xit)|leave)?)|blclick)|un(handledrejection|load)|p(opstate|lay(ing)?|a(ste|use|ge(show|hide))|rogress)|e(nded|rror|mptied)|volumechange|key(down|up|press)|focus|w(heel|aiting)|l(oad(start|e(nd|d((?:|meta)data)))?|anguagechange)|a(uxclick|fterprint|bort)|r(e(s(ize|et)|jectionhandled)|atechange)|m(ouse(o(ut|ver)|down|up|enter|leave|move)|essage(error)?)|b(efore(unload|print)|lur)))(?![-:\\\\\\\\w])\",\"beginCaptures\":{\"0\":{\"patterns\":[{\"match\":\".*\",\"name\":\"entity.other.attribute-name.astro\"}]}},\"end\":\"(?=\\\\s*+[^=\\\\s])\",\"name\":\"meta.attribute.$1.astro\",\"patterns\":[{\"begin\":\"=\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.separator.key-value.astro\"}},\"end\":\"(?<=[^=\\\\s])(?!\\\\s*=)|(?=/?>)\",\"patterns\":[{\"include\":\"#interpolation\"},{\"include\":\"#attribute-literal\"},{\"begin\":\"(?=[^/<=>`\\\\s]|/(?!>))\",\"end\":\"(?!\\\\G)\",\"name\":\"meta.embedded.line.js\",\"patterns\":[{\"captures\":{\"0\":{\"name\":\"source.js\"},\"1\":{\"patterns\":[{\"include\":\"source.js\"}]}},\"match\":\"(([^\\\"'/<=>`\\\\s]|/(?!>))+)\",\"name\":\"string.unquoted.astro\"},{\"begin\":\"(\\\")\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.astro\"}},\"end\":\"\\\\1\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.astro\"}},\"name\":\"string.quoted.astro\",\"patterns\":[{\"captures\":{\"0\":{\"patterns\":[{\"include\":\"source.js\"}]}},\"match\":\"([^\\\\n\\\"/]|/(?![*/]))+\"},{\"begin\":\"//\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.comment.js\"}},\"end\":\"(?=\\\")|\\\\n\",\"name\":\"comment.line.double-slash.js\"},{\"begin\":\"/\\\\*\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.comment.begin.js\"}},\"end\":\"(?=\\\")|\\\\*/\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.comment.end.js\"}},\"name\":\"comment.block.js\"}]},{\"begin\":\"(')\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.astro\"}},\"end\":\"\\\\1\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.astro\"}},\"name\":\"string.quoted.astro\",\"patterns\":[{\"captures\":{\"0\":{\"patterns\":[{\"include\":\"source.js\"}]}},\"match\":\"([^\\\\n'/]|/(?![*/]))+\"},{\"begin\":\"//\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.comment.js\"}},\"end\":\"(?=')|\\\\n\",\"name\":\"comment.line.double-slash.js\"},{\"begin\":\"/\\\\*\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.comment.begin.js\"}},\"end\":\"(?=')|\\\\*/\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.comment.end.js\"}},\"name\":\"comment.block.js\"}]}]}]}]},\"attributes-interpolated\":{\"begin\":\"(?<![:=])\\\\s*(\\\\{)\",\"contentName\":\"meta.embedded.expression.astro source.tsx\",\"end\":\"(})\",\"patterns\":[{\"include\":\"source.tsx\"}]},\"attributes-keyvalue\":{\"begin\":\"([$@_[:alpha:]][-$.:_[:alnum:]]*)\",\"beginCaptures\":{\"0\":{\"patterns\":[{\"match\":\".*\",\"name\":\"entity.other.attribute-name.astro\"}]}},\"end\":\"(?=\\\\s*+[^=\\\\s])\",\"name\":\"meta.attribute.$1.astro\",\"patterns\":[{\"begin\":\"=\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.separator.key-value.astro\"}},\"end\":\"(?<=[^=\\\\s])(?!\\\\s*=)|(?=/?>)\",\"patterns\":[{\"include\":\"#attributes-value\"}]}]},\"attributes-value\":{\"patterns\":[{\"include\":\"#interpolation\"},{\"match\":\"([^\\\"'/<=>`\\\\s]|/(?!>))+\",\"name\":\"string.unquoted.astro\"},{\"begin\":\"([\\\"'])\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.astro\"}},\"end\":\"\\\\1\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.astro\"}},\"name\":\"string.quoted.astro\"},{\"include\":\"#attribute-literal\"}]},\"comments\":{\"begin\":\"<!--\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.comment.astro\"}},\"end\":\"-->\",\"name\":\"comment.block.astro\",\"patterns\":[{\"match\":\"\\\\G-?>|<!--(?!>)|<!-(?=-->)|--!>\",\"name\":\"invalid.illegal.characters-not-allowed-here.astro\"}]},\"entities\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.definition.entity.astro\"},\"912\":{\"name\":\"punctuation.definition.entity.astro\"}},\"match\":\"(&)(?=[A-Za-z])((a(s(ymp(eq)?|cr|t)|n(d(slope|[dv]|and)?|g(s(t|ph)|zarr|e|le|rt(vb(d)?)?|msd(a([a-h]))?)?)|c(y|irc|d|ute|E)?|tilde|o(pf|gon)|uml|p(id|os|prox(eq)?|[Ee]|acir)?|elig|f(r)?|w((?:con|)int)|l(pha|e(ph|fsym))|acute|ring|grave|m(p|a(cr|lg))|breve)|A(s(sign|cr)|nd|MP|c(y|irc)|tilde|o(pf|gon)|uml|pplyFunction|fr|Elig|lpha|acute|ring|grave|macr|breve))|(B(scr|cy|opf|umpeq|e(cause|ta|rnoullis)|fr|a(ckslash|r(v|wed))|reve)|b(s(cr|im(e)?|ol(hsub|b)?|emi)|n(ot|e(quiv)?)|c(y|ong)|ig(s(tar|qcup)|c(irc|up|ap)|triangle(down|up)|o(times|dot|plus)|uplus|vee|wedge)|o(t(tom)?|pf|wtie|x(h([DUdu])?|times|H([DUdu])?|d([LRlr])|u([LRlr])|plus|D([LRlr])|v([HLRhlr])?|U([LRlr])|V([HLRhlr])?|minus|box))|Not|dquo|u(ll(et)?|mp(e(q)?|E)?)|prime|e(caus(e)?|t(h|ween|a)|psi|rnou|mptyv)|karow|fr|l(ock|k(1([24])|34)|a(nk|ck(square|triangle(down|left|right)?|lozenge)))|a(ck(sim(eq)?|cong|prime|epsilon)|r(vee|wed(ge)?))|r(eve|vbar)|brk(tbrk)?))|(c(s(cr|u(p(e)?|b(e)?))|h(cy|i|eck(mark)?)|ylcty|c(irc|ups(sm)?|edil|a(ps|ron))|tdot|ir(scir|c(eq|le(d(R|circ|S|dash|ast)|arrow(left|right)))?|e|fnint|E|mid)?|o(n(int|g(dot)?)|p(y(sr)?|f|rod)|lon(e(q)?)?|m(p(fn|le(xes|ment))?|ma(t)?))|dot|u(darr([lr])|p(s|c([au]p)|or|dot|brcap)?|e(sc|pr)|vee|wed|larr(p)?|r(vearrow(left|right)|ly(eq(succ|prec)|vee|wedge)|arr(m)?|ren))|e(nt(erdot)?|dil|mptyv)|fr|w((?:con|)int)|lubs(uit)?|a(cute|p(s|c([au]p)|dot|and|brcup)?|r(on|et))|r(oss|arr))|C(scr|hi|c(irc|onint|edil|aron)|ircle(Minus|Times|Dot|Plus)|Hcy|o(n(tourIntegral|int|gruent)|unterClockwiseContourIntegral|p(f|roduct)|lon(e)?)|dot|up(Cap)?|OPY|e(nterDot|dilla)|fr|lo(seCurly((?:Double|)Quote)|ckwiseContourIntegral)|a(yleys|cute|p(italDifferentialD)?)|ross))|(d(s(c([ry])|trok|ol)|har([lr])|c(y|aron)|t(dot|ri(f)?)|i(sin|e|v(ide(ontimes)?|onx)?|am(s|ond(suit)?)?|gamma)|Har|z(cy|igrarr)|o(t(square|plus|eq(dot)?|minus)?|ublebarwedge|pf|wn(harpoon(left|right)|downarrows|arrow)|llar)|d(otseq|a(rr|gger))?|u(har|arr)|jcy|e(lta|g|mptyv)|f(isht|r)|wangle|lc(orn|rop)|a(sh(v)?|leth|rr|gger)|r(c(orn|rop)|bkarow)|b(karow|lac)|Arr)|D(s(cr|trok)|c(y|aron)|Scy|i(fferentialD|a(critical(Grave|Tilde|Do(t|ubleAcute)|Acute)|mond))|o(t(Dot|Equal)?|uble(Right(Tee|Arrow)|ContourIntegral|Do(t|wnArrow)|Up((?:Down|)Arrow)|VerticalBar|L(ong(RightArrow|Left((?:Right|)Arrow))|eft(RightArrow|Tee|Arrow)))|pf|wn(Right(TeeVector|Vector(Bar)?)|Breve|Tee(Arrow)?|arrow|Left(RightVector|TeeVector|Vector(Bar)?)|Arrow(Bar|UpArrow)?))|Zcy|el(ta)?|D(otrahd)?|Jcy|fr|a(shv|rr|gger)))|(e(s(cr|im|dot)|n(sp|g)|c(y|ir(c)?|olon|aron)|t([ah])|o(pf|gon)|dot|u(ro|ml)|p(si(v|lon)?|lus|ar(sl)?)|e|D(D??ot)|q(s(im|lant(less|gtr))|c(irc|olon)|u(iv(DD)?|est|als)|vparsl)|f(Dot|r)|l(s(dot)?|inters|l)?|a(ster|cute)|r(Dot|arr)|g(s(dot)?|rave)?|x(cl|ist|p(onentiale|ectation))|m(sp(1([34]))?|pty(set|v)?|acr))|E(s(cr|im)|c(y|irc|aron)|ta|o(pf|gon)|NG|dot|uml|TH|psilon|qu(ilibrium|al(Tilde)?)|fr|lement|acute|grave|x(ists|ponentialE)|m(pty((?:|Very)SmallSquare)|acr)))|(f(scr|nof|cy|ilig|o(pf|r(k(v)?|all))|jlig|partint|emale|f(ilig|l(l??ig)|r)|l(tns|lig|at)|allingdotseq|r(own|a(sl|c(1([2-68])|78|2([35])|3([458])|45|5([68])))))|F(scr|cy|illed((?:|Very)SmallSquare)|o(uriertrf|pf|rAll)|fr))|(G(scr|c(y|irc|edil)|t|opf|dot|T|Jcy|fr|amma(d)?|reater(Greater|SlantEqual|Tilde|Equal(Less)?|FullEqual|Less)|g|breve)|g(s(cr|im([el])?)|n(sim|e(q(q)?)?|E|ap(prox)?)|c(y|irc)|t(c(c|ir)|dot|quest|lPar|r(sim|dot|eq(q?less)|less|a(pprox|rr)))?|imel|opf|dot|jcy|e(s(cc|dot(o(l)?)?|l(es)?)?|q(slant|q)?|l)?|v(nE|ertneqq)|fr|E(l)?|l([Eaj])?|a(cute|p|mma(d)?)|rave|g(g)?|breve))|(h(s(cr|trok|lash)|y(phen|bull)|circ|o(ok((?:lef|righ)tarrow)|pf|arr|rbar|mtht)|e(llip|arts(uit)?|rcon)|ks([ew]arow)|fr|a(irsp|lf|r(dcy|r(cir|w)?)|milt)|bar|Arr)|H(s(cr|trok)|circ|ilbertSpace|o(pf|rizontalLine)|ump(DownHump|Equal)|fr|a(cek|t)|ARDcy))|(i(s(cr|in(s(v)?|dot|[Ev])?)|n(care|t(cal|prod|e(rcal|gers)|larhk)?|odot|fin(tie)?)?|c(y|irc)?|t(ilde)?|i(nfin|i(i??nt)|ota)?|o(cy|ta|pf|gon)|u(kcy|ml)|jlig|prod|e(cy|xcl)|quest|f([fr])|acute|grave|m(of|ped|a(cr|th|g(part|e|line))))|I(scr|n(t(e(rsection|gral))?|visible(Comma|Times))|c(y|irc)|tilde|o(ta|pf|gon)|dot|u(kcy|ml)|Ocy|Jlig|fr|Ecy|acute|grave|m(plies|a(cr|ginaryI))?))|(j(s(cr|ercy)|c(y|irc)|opf|ukcy|fr|math)|J(s(cr|ercy)|c(y|irc)|opf|ukcy|fr))|(k(scr|hcy|c(y|edil)|opf|jcy|fr|appa(v)?|green)|K(scr|c(y|edil)|Hcy|opf|Jcy|fr|appa))|(l(s(h|cr|trok|im([eg])?|q(uo(r)?|b)|aquo)|h(ar(d|u(l)?)|blk)|n(sim|e(q(q)?)?|E|ap(prox)?)|c(y|ub|e(d??il)|aron)|Barr|t(hree|c(c|ir)|imes|dot|quest|larr|r(i([ef])?|Par))?|Har|o(ng(left((?:|right)arrow)|rightarrow|mapsto)|times|z(enge|f)?|oparrow(left|right)|p(f|lus|ar)|w(ast|bar)|a(ng|rr)|brk)|d(sh|ca|quo(r)?|r((?:d|us)har))|ur((?:ds|u)har)|jcy|par(lt)?|e(s(s(sim|dot|eq(q?gtr)|approx|gtr)|cc|dot(o(r)?)?|g(es)?)?|q(slant|q)?|ft(harpoon(down|up)|threetimes|leftarrows|arrow(tail)?|right(squigarrow|harpoons|arrow(s)?))|g)?|v(nE|ertneqq)|f(isht|loor|r)|E(g)?|l(hard|corner|tri|arr)?|a(ng(d|le)?|cute|t(e(s)?|ail)?|p|emptyv|quo|rr(sim|hk|tl|pl|fs|lp|b(fs)?)?|gran|mbda)|r(har(d)?|corner|tri|arr|m)|g(E)?|m(idot|oust(ache)?)|b(arr|r(k(sl([du])|e)|ac([ek]))|brk)|A(tail|arr|rr))|L(s(h|cr|trok)|c(y|edil|aron)|t|o(ng(RightArrow|left((?:|right)arrow)|rightarrow|Left((?:Right|)Arrow))|pf|wer((?:Righ|Lef)tArrow))|T|e(ss(Greater|SlantEqual|Tilde|EqualGreater|FullEqual|Less)|ft(Right(Vector|Arrow)|Ceiling|T(ee(Vector|Arrow)?|riangle(Bar|Equal)?)|Do(ubleBracket|wn(TeeVector|Vector(Bar)?))|Up(TeeVector|DownVector|Vector(Bar)?)|Vector(Bar)?|arrow|rightarrow|Floor|A(ngleBracket|rrow(RightArrow|Bar)?)))|Jcy|fr|l(eftarrow)?|a(ng|cute|placetrf|rr|mbda)|midot))|(M(scr|cy|inusPlus|opf|u|e(diumSpace|llintrf)|fr|ap)|m(s(cr|tpos)|ho|nplus|c(y|omma)|i(nus(d(u)?|b)?|cro|d(cir|dot|ast)?)|o(dels|pf)|dash|u((?:lti|)map)?|p|easuredangle|DDot|fr|l(cp|dr)|a(cr|p(sto(down|up|left)?)?|l(t(ese)?|e)|rker)))|(n(s(hort(parallel|mid)|c(cue|[er])?|im(e(q)?)?|u(cc(eq)?|p(set(eq(q)?)?|[Ee])?|b(set(eq(q)?)?|[Ee])?)|par|qsu([bp]e)|mid)|Rightarrow|h(par|arr|Arr)|G(t(v)?|g)|c(y|ong(dot)?|up|edil|a(p|ron))|t(ilde|lg|riangle(left(eq)?|right(eq)?)|gl)|i(s(d)?|v)?|o(t(ni(v([abc]))?|in(dot|v([abc])|E)?)?|pf)|dash|u(m(sp|ero)?)?|jcy|p(olint|ar(sl|t|allel)?|r(cue|e(c(eq)?)?)?)|e(s(im|ear)|dot|quiv|ar(hk|r(ow)?)|xist(s)?|Arr)?|v(sim|infin|Harr|dash|Dash|l(t(rie)?|e|Arr)|ap|r(trie|Arr)|g([et]))|fr|w(near|ar(hk|r(ow)?)|Arr)|V([Dd]ash)|l(sim|t(ri(e)?)?|dr|e(s(s)?|q(slant|q)?|ft((?:|right)arrow))?|E|arr|Arr)|a(ng|cute|tur(al(s)?)?|p(id|os|prox|E)?|bla)|r(tri(e)?|ightarrow|arr([cw])?|Arr)|g(sim|t(r)?|e(s|q(slant|q)?)?|E)|mid|L(t(v)?|eft((?:|right)arrow)|l)|b(sp|ump(e)?))|N(scr|c(y|edil|aron)|tilde|o(nBreakingSpace|Break|t(R(ightTriangle(Bar|Equal)?|everseElement)|Greater(Greater|SlantEqual|Tilde|Equal|FullEqual|Less)?|S(u(cceeds(SlantEqual|Tilde|Equal)?|perset(Equal)?|bset(Equal)?)|quareSu(perset(Equal)?|bset(Equal)?))|Hump(DownHump|Equal)|Nested(GreaterGreater|LessLess)|C(ongruent|upCap)|Tilde(Tilde|Equal|FullEqual)?|DoubleVerticalBar|Precedes((?:Slant|)Equal)?|E(qual(Tilde)?|lement|xists)|VerticalBar|Le(ss(Greater|SlantEqual|Tilde|Equal|Less)?|ftTriangle(Bar|Equal)?))?|pf)|u|e(sted(GreaterGreater|LessLess)|wLine|gative(MediumSpace|Thi((?:n|ck)Space)|VeryThinSpace))|Jcy|fr|acute))|(o(s(cr|ol|lash)|h(m|bar)|c(y|ir(c)?)|ti(lde|mes(as)?)|S|int|opf|d(sold|iv|ot|ash|blac)|uml|p(erp|lus|ar)|elig|vbar|f(cir|r)|l(c(ir|ross)|t|ine|arr)|a(st|cute)|r(slope|igof|or|d(er(of)?|[fm])?|v|arr)?|g(t|on|rave)|m(i(nus|cron|d)|ega|acr))|O(s(cr|lash)|c(y|irc)|ti(lde|mes)|opf|dblac|uml|penCurly((?:Double|)Quote)|ver(B(ar|rac(e|ket))|Parenthesis)|fr|Elig|acute|r|grave|m(icron|ega|acr)))|(p(s(cr|i)|h(i(v)?|one|mmat)|cy|i(tchfork|v)?|o(intint|und|pf)|uncsp|er(cnt|tenk|iod|p|mil)|fr|l(us(sim|cir|two|d([ou])|e|acir|mn|b)?|an(ck(h)?|kv))|ar(s(im|l)|t|a(llel)?)?|r(sim|n(sim|E|ap)|cue|ime(s)?|o(d|p(to)?|f(surf|line|alar))|urel|e(c(sim|n(sim|eqq|approx)|curlyeq|eq|approx)?)?|E|ap)?|m)|P(s(cr|i)|hi|cy|i|o(incareplane|pf)|fr|lusMinus|artialD|r(ime|o(duct|portion(al)?)|ecedes(SlantEqual|Tilde|Equal)?)?))|(q(scr|int|opf|u(ot|est(eq)?|at(int|ernions))|prime|fr)|Q(scr|opf|UOT|fr))|(R(s(h|cr)|ho|c(y|edil|aron)|Barr|ight(Ceiling|T(ee(Vector|Arrow)?|riangle(Bar|Equal)?)|Do(ubleBracket|wn(TeeVector|Vector(Bar)?))|Up(TeeVector|DownVector|Vector(Bar)?)|Vector(Bar)?|arrow|Floor|A(ngleBracket|rrow(Bar|LeftArrow)?))|o(undImplies|pf)|uleDelayed|e(verse(UpEquilibrium|E(quilibrium|lement)))?|fr|EG|a(ng|cute|rr(tl)?)|rightarrow)|r(s(h|cr|q(uo(r)?|b)|aquo)|h(o(v)?|ar(d|u(l)?))|nmid|c(y|ub|e(d??il)|aron)|Barr|t(hree|imes|ri([ef]|ltri)?)|i(singdotseq|ng|ght(squigarrow|harpoon(down|up)|threetimes|left(harpoons|arrows)|arrow(tail)?|rightarrows))|Har|o(times|p(f|lus|ar)|a(ng|rr)|brk)|d(sh|ca|quo(r)?|ldhar)|uluhar|p(polint|ar(gt)?)|e(ct|al(s|ine|part)?|g)|f(isht|loor|r)|l(har|arr|m)|a(ng([de]|le)?|c(ute|e)|t(io(nals)?|ail)|dic|emptyv|quo|rr(sim|hk|c|tl|pl|fs|w|lp|ap|b(fs)?)?)|rarr|x|moust(ache)?|b(arr|r(k(sl([du])|e)|ac([ek]))|brk)|A(tail|arr|rr)))|(s(s(cr|tarf|etmn|mile)|h(y|c(hcy|y)|ort(parallel|mid)|arp)|c(sim|y|n(sim|E|ap)|cue|irc|polint|e(dil)?|E|a(p|ron))?|t(ar(f)?|r(ns|aight(phi|epsilon)))|i(gma([fv])?|m(ne|dot|plus|e(q)?|l(E)?|rarr|g(E)?)?)|zlig|o(pf|ftcy|l(b(ar)?)?)|dot([be])?|u(ng|cc(sim|n(sim|eqq|approx)|curlyeq|eq|approx)?|p(s(im|u([bp])|et(neq(q)?|eq(q)?)?)|hs(ol|ub)|1|n([Ee])|2|d(sub|ot)|3|plus|e(dot)?|E|larr|mult)?|m|b(s(im|u([bp])|et(neq(q)?|eq(q)?)?)|n([Ee])|dot|plus|e(dot)?|E|rarr|mult)?)|pa(des(uit)?|r)|e(swar|ct|tm(n|inus)|ar(hk|r(ow)?)|xt|mi|Arr)|q(su(p(set(eq)?|e)?|b(set(eq)?|e)?)|c(up(s)?|ap(s)?)|u(f|ar([ef]))?)|fr(own)?|w(nwar|ar(hk|r(ow)?)|Arr)|larr|acute|rarr|m(t(e(s)?)?|i(d|le)|eparsl|a(shp|llsetminus))|bquo)|S(scr|hort((?:Right|Down|Up|Left)Arrow)|c(y|irc|edil|aron)?|tar|igma|H(cy|CHcy)|opf|u(c(hThat|ceeds(SlantEqual|Tilde|Equal)?)|p(set|erset(Equal)?)?|m|b(set(Equal)?)?)|OFTcy|q(uare(Su(perset(Equal)?|bset(Equal)?)|Intersection|Union)?|rt)|fr|acute|mallCircle))|(t(s(hcy|c([ry])|trok)|h(i(nsp|ck(sim|approx))|orn|e(ta(sym|v)?|re(4|fore))|k(sim|ap))|c(y|edil|aron)|i(nt|lde|mes(d|b(ar)?)?)|o(sa|p(cir|f(ork)?|bot)?|ea)|dot|prime|elrec|fr|w(ixt|ohead((?:lef|righ)tarrow))|a(u|rget)|r(i(sb|time|dot|plus|e|angle(down|q|left(eq)?|right(eq)?)?|minus)|pezium|ade)|brk)|T(s(cr|trok)|RADE|h(i((?:n|ck)Space)|e(ta|refore))|c(y|edil|aron)|S(H??cy)|ilde(Tilde|Equal|FullEqual)?|HORN|opf|fr|a([bu])|ripleDot))|(u(scr|h(ar([lr])|blk)|c(y|irc)|t(ilde|dot|ri(f)?)|Har|o(pf|gon)|d(har|arr|blac)|u(arr|ml)|p(si(h|lon)?|harpoon(left|right)|downarrow|uparrows|lus|arrow)|f(isht|r)|wangle|l(c(orn(er)?|rop)|tri)|a(cute|rr)|r(c(orn(er)?|rop)|tri|ing)|grave|m(l|acr)|br(cy|eve)|Arr)|U(scr|n(ion(Plus)?|der(B(ar|rac(e|ket))|Parenthesis))|c(y|irc)|tilde|o(pf|gon)|dblac|uml|p(si(lon)?|downarrow|Tee(Arrow)?|per((?:Righ|Lef)tArrow)|DownArrow|Equilibrium|arrow|Arrow(Bar|DownArrow)?)|fr|a(cute|rr(ocir)?)|ring|grave|macr|br(cy|eve)))|(v(s(cr|u(pn([Ee])|bn([Ee])))|nsu([bp])|cy|Bar(v)?|zigzag|opf|dash|prop|e(e(eq|bar)?|llip|r(t|bar))|Dash|fr|ltri|a(ngrt|r(s(igma|u(psetneq(q)?|bsetneq(q)?))|nothing|t(heta|riangle(left|right))|p(hi|i|ropto)|epsilon|kappa|r(ho)?))|rtri|Arr)|V(scr|cy|opf|dash(l)?|e(e|r(yThinSpace|t(ical(Bar|Separator|Tilde|Line))?|bar))|Dash|vdash|fr|bar))|(w(scr|circ|opf|p|e(ierp|d(ge(q)?|bar))|fr|r(eath)?)|W(scr|circ|opf|edge|fr))|(X(scr|i|opf|fr)|x(s(cr|qcup)|h([Aa]rr)|nis|c(irc|up|ap)|i|o(time|dot|p(f|lus))|dtri|u(tri|plus)|vee|fr|wedge|l([Aa]rr)|r([Aa]rr)|map))|(y(scr|c(y|irc)|icy|opf|u(cy|ml)|en|fr|ac(y|ute))|Y(scr|c(y|irc)|opf|uml|Icy|Ucy|fr|acute|Acy))|(z(scr|hcy|c(y|aron)|igrarr|opf|dot|e(ta|etrf)|fr|w(n?j)|acute)|Z(scr|c(y|aron)|Hcy|opf|dot|e(ta|roWidthSpace)|fr|acute)))(;)\",\"name\":\"constant.character.entity.named.$2.astro\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.entity.astro\"},\"3\":{\"name\":\"punctuation.definition.entity.astro\"}},\"match\":\"(&)#[0-9]+(;)\",\"name\":\"constant.character.entity.numeric.decimal.astro\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.entity.astro\"},\"3\":{\"name\":\"punctuation.definition.entity.astro\"}},\"match\":\"(&)#[Xx]\\\\h+(;)\",\"name\":\"constant.character.entity.numeric.hexadecimal.astro\"},{\"match\":\"&(?=[0-9A-Za-z]+;)\",\"name\":\"invalid.illegal.ambiguous-ampersand.astro\"}]},\"frontmatter\":{\"begin\":\"\\\\A(-{3})\\\\s*$\",\"beginCaptures\":{\"1\":{\"name\":\"comment\"}},\"contentName\":\"source.ts\",\"end\":\"(^|\\\\G)(-{3})|\\\\.{3}\\\\s*$\",\"endCaptures\":{\"2\":{\"name\":\"comment\"}},\"patterns\":[{\"include\":\"source.ts\"}]},\"interpolation\":{\"patterns\":[{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.section.embedded.begin.astro\"}},\"contentName\":\"meta.embedded.expression.astro source.tsx\",\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.section.embedded.end.astro\"}},\"patterns\":[{\"begin\":\"\\\\G\\\\s*(?=\\\\{)\",\"end\":\"(?<=})\",\"patterns\":[{\"include\":\"source.tsx#object-literal\"}]},{\"include\":\"source.tsx\"}]}]},\"scope\":{\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#tags\"},{\"include\":\"#interpolation\"},{\"include\":\"#entities\"}]},\"tags\":{\"patterns\":[{\"include\":\"#tags-raw\"},{\"include\":\"#tags-lang\"},{\"include\":\"#tags-void\"},{\"include\":\"#tags-general-end\"},{\"include\":\"#tags-general-start\"}]},\"tags-end-node\":{\"captures\":{\"1\":{\"name\":\"meta.tag.end.astro punctuation.definition.tag.begin.astro\"},\"2\":{\"name\":\"meta.tag.end.astro\",\"patterns\":[{\"include\":\"#tags-name\"}]},\"3\":{\"name\":\"meta.tag.end.astro punctuation.definition.tag.end.astro\"},\"4\":{\"name\":\"meta.tag.start.astro punctuation.definition.tag.end.astro\"}},\"match\":\"(</)(.*?)\\\\s*(>)|(/>)\"},\"tags-general-end\":{\"begin\":\"(</)([^/>\\\\s]*)\",\"beginCaptures\":{\"1\":{\"name\":\"meta.tag.end.astro punctuation.definition.tag.begin.astro\"},\"2\":{\"name\":\"meta.tag.end.astro\",\"patterns\":[{\"include\":\"#tags-name\"}]}},\"end\":\"(>)\",\"endCaptures\":{\"1\":{\"name\":\"meta.tag.end.astro punctuation.definition.tag.end.astro\"}},\"name\":\"meta.scope.tag.$2.astro\"},\"tags-general-start\":{\"begin\":\"(<)([^/>\\\\s]*)\",\"beginCaptures\":{\"0\":{\"patterns\":[{\"include\":\"#tags-start-node\"}]}},\"end\":\"(/?>)\",\"endCaptures\":{\"1\":{\"name\":\"meta.tag.start.astro punctuation.definition.tag.end.astro\"}},\"name\":\"meta.scope.tag.$2.astro\",\"patterns\":[{\"include\":\"#tags-start-attributes\"}]},\"tags-lang\":{\"begin\":\"<(s(?:cript|tyle))\",\"beginCaptures\":{\"0\":{\"patterns\":[{\"include\":\"#tags-start-node\"}]}},\"end\":\"</\\\\1\\\\s*>|/>\",\"endCaptures\":{\"0\":{\"patterns\":[{\"include\":\"#tags-end-node\"}]}},\"name\":\"meta.scope.tag.$1.astro meta.$1.astro\",\"patterns\":[{\"begin\":\"\\\\G(?=\\\\s*[^>]*?(type|lang)\\\\s*=\\\\s*([\\\"']?)(?:text/)?(application/ld\\\\+json)\\\\2)\",\"end\":\"(?=</|/>)\",\"name\":\"meta.lang.json.astro\",\"patterns\":[{\"include\":\"#tags-lang-start-attributes\"}]},{\"begin\":\"\\\\G(?=\\\\s*[^>]*?(type|lang)\\\\s*=\\\\s*([\\\"']?)(module)\\\\2)\",\"end\":\"(?=</|/>)\",\"name\":\"meta.lang.javascript.astro\",\"patterns\":[{\"include\":\"#tags-lang-start-attributes\"}]},{\"begin\":\"\\\\G(?=\\\\s*[^>]*?(type|lang)\\\\s*=\\\\s*([\\\"']?)(?:text/|application/)?([+/\\\\w]+)\\\\2)\",\"end\":\"(?=</|/>)\",\"name\":\"meta.lang.$3.astro\",\"patterns\":[{\"include\":\"#tags-lang-start-attributes\"}]},{\"include\":\"#tags-lang-start-attributes\"}]},\"tags-lang-start-attributes\":{\"begin\":\"\\\\G\",\"end\":\"(?=/>)|>\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.tag.end.astro\"}},\"name\":\"meta.tag.start.astro\",\"patterns\":[{\"include\":\"#attributes\"}]},\"tags-name\":{\"patterns\":[{\"match\":\"[A-Z][0-9A-Z_a-z]*\",\"name\":\"support.class.component.astro\"},{\"match\":\"[a-z][0-:\\\\w]*-[-0-:\\\\w]*\",\"name\":\"meta.tag.custom.astro entity.name.tag.astro\"},{\"match\":\"[a-z][-0-:\\\\w]*\",\"name\":\"entity.name.tag.astro\"}]},\"tags-raw\":{\"begin\":\"<([^!/<>?\\\\s]+)(?=[^>]+is:raw).*?\",\"beginCaptures\":{\"0\":{\"patterns\":[{\"include\":\"#tags-start-node\"}]}},\"contentName\":\"source.unknown\",\"end\":\"</\\\\1\\\\s*>|/>\",\"endCaptures\":{\"0\":{\"patterns\":[{\"include\":\"#tags-end-node\"}]}},\"name\":\"meta.scope.tag.$1.astro meta.raw.astro\",\"patterns\":[{\"include\":\"#tags-lang-start-attributes\"}]},\"tags-start-attributes\":{\"begin\":\"\\\\G\",\"end\":\"(?=/?>)\",\"name\":\"meta.tag.start.astro\",\"patterns\":[{\"include\":\"#attributes\"}]},\"tags-start-node\":{\"captures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.astro\"},\"2\":{\"patterns\":[{\"include\":\"#tags-name\"}]}},\"match\":\"(<)([^/>\\\\s]*)\",\"name\":\"meta.tag.start.astro\"},\"tags-void\":{\"begin\":\"(<)(area|base|br|col|embed|hr|img|input|link|meta|param|source|track|wbr)(?=\\\\s|/?>)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.astro\"},\"2\":{\"name\":\"entity.name.tag.astro\"}},\"end\":\"/?>\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.tag.begin.astro\"}},\"name\":\"meta.tag.void.astro\",\"patterns\":[{\"include\":\"#attributes\"}]},\"text\":{\"patterns\":[{\"begin\":\"(?<=^|---|[>}])\",\"end\":\"(?=[<{]|$)\",\"name\":\"text.astro\",\"patterns\":[{\"include\":\"#entities\"}]}]}},\"scopeName\":\"source.astro\",\"embeddedLangs\":[\"json\",\"javascript\",\"typescript\",\"css\",\"postcss\",\"tsx\"],\"embeddedLangsLazy\":[\"sass\",\"scss\",\"stylus\",\"less\"]}")), astro_default = [
8
+ ...json_default,
9
+ ...javascript_default,
10
+ ...typescript_default,
11
+ ...css_default,
12
+ ...postcss_default,
13
+ ...tsx_default,
14
+ lang
15
+ ];
16
+ export { astro_default as default };
@@ -0,0 +1,2 @@
1
+ var awk_default = [Object.freeze(JSON.parse("{\"displayName\":\"AWK\",\"fileTypes\":[\"awk\"],\"name\":\"awk\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#procedure\"},{\"include\":\"#pattern\"}],\"repository\":{\"builtin-pattern\":{\"match\":\"\\\\b(BEGINFILE|BEGIN|ENDFILE|END)\\\\b\",\"name\":\"constant.language.awk\"},\"command\":{\"patterns\":[{\"match\":\"\\\\b(?:next|printf??)\\\\b\",\"name\":\"keyword.other.command.awk\"},{\"match\":\"\\\\b(?:close|getline|delete|system)\\\\b\",\"name\":\"keyword.other.command.nawk\"},{\"match\":\"\\\\b(?:fflush|nextfile)\\\\b\",\"name\":\"keyword.other.command.bell-awk\"}]},\"comment\":{\"match\":\"#.*\",\"name\":\"comment.line.number-sign.awk\"},\"constant\":{\"patterns\":[{\"include\":\"#numeric-constant\"},{\"include\":\"#string-constant\"}]},\"escaped-char\":{\"match\":\"\\\\\\\\(?:[\\\"/\\\\\\\\abfnrtv]|x\\\\h{2}|[0-7]{3})\",\"name\":\"constant.character.escape.awk\"},\"expression\":{\"patterns\":[{\"include\":\"#command\"},{\"include\":\"#function\"},{\"include\":\"#constant\"},{\"include\":\"#variable\"},{\"include\":\"#regexp-in-expression\"},{\"include\":\"#operator\"},{\"include\":\"#groupings\"}]},\"function\":{\"patterns\":[{\"match\":\"\\\\b(?:exp|int|log|sqrt|index|length|split|sprintf|substr)\\\\b\",\"name\":\"support.function.awk\"},{\"match\":\"\\\\b(?:atan2|cos|rand|sin|srand|gsub|match|sub|tolower|toupper)\\\\b\",\"name\":\"support.function.nawk\"},{\"match\":\"\\\\b(?:gensub|strftime|systime)\\\\b\",\"name\":\"support.function.gawk\"}]},\"function-definition\":{\"begin\":\"\\\\b(function)\\\\s+(\\\\w+)(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"storage.type.function.awk\"},\"2\":{\"name\":\"entity.name.function.awk\"},\"3\":{\"name\":\"punctuation.definition.parameters.begin.awk\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.parameters.end.awk\"}},\"patterns\":[{\"match\":\"\\\\b(\\\\w+)\\\\b\",\"name\":\"variable.parameter.function.awk\"},{\"match\":\"\\\\b(,)\\\\b\",\"name\":\"punctuation.separator.parameters.awk\"}]},\"groupings\":{\"patterns\":[{\"match\":\"\\\\(\",\"name\":\"meta.brace.round.awk\"},{\"match\":\"\\\\)\",\"name\":\"meta.brace.round.awk\"},{\"match\":\",\",\"name\":\"punctuation.separator.parameters.awk\"}]},\"keyword\":{\"match\":\"\\\\b(?:break|continue|do|while|exit|for|if|else|return)\\\\b\",\"name\":\"keyword.control.awk\"},\"numeric-constant\":{\"match\":\"\\\\b[0-9]+(?:\\\\.[0-9]+)?(?:e[-+][0-9]+)?\\\\b\",\"name\":\"constant.numeric.awk\"},\"operator\":{\"patterns\":[{\"match\":\"(!?~|[!<=>]=|[<>])\",\"name\":\"keyword.operator.comparison.awk\"},{\"match\":\"\\\\b(in)\\\\b\",\"name\":\"keyword.operator.comparison.awk\"},{\"match\":\"([-%*+/^]=|\\\\+\\\\+|--|>>|=)\",\"name\":\"keyword.operator.assignment.awk\"},{\"match\":\"(\\\\|\\\\||&&|!)\",\"name\":\"keyword.operator.boolean.awk\"},{\"match\":\"([-%*+/^])\",\"name\":\"keyword.operator.arithmetic.awk\"},{\"match\":\"([:?])\",\"name\":\"keyword.operator.trinary.awk\"},{\"match\":\"([]\\\\[])\",\"name\":\"keyword.operator.index.awk\"}]},\"pattern\":{\"patterns\":[{\"include\":\"#regexp-as-pattern\"},{\"include\":\"#function-definition\"},{\"include\":\"#builtin-pattern\"},{\"include\":\"#expression\"}]},\"procedure\":{\"begin\":\"\\\\{\",\"end\":\"}\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#procedure\"},{\"include\":\"#keyword\"},{\"include\":\"#expression\"}]},\"regex-as-assignment\":{\"begin\":\"([^-!%*+/<=>^]=)\\\\s*(/)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.operator.assignment.awk\"},\"2\":{\"name\":\"punctuation.definition.regex.begin.awk\"}},\"contentName\":\"string.regexp\",\"end\":\"/\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.regex.end.awk\"}},\"patterns\":[{\"include\":\"source.regexp\"}]},\"regex-as-comparison\":{\"begin\":\"(!?~)\\\\s*(/)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.operator.comparison.awk\"},\"2\":{\"name\":\"punctuation.definition.regex.begin.awk\"}},\"contentName\":\"string.regexp\",\"end\":\"/\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.regex.end.awk\"}},\"patterns\":[{\"include\":\"source.regexp\"}]},\"regex-as-first-argument\":{\"begin\":\"(\\\\()\\\\s*(/)\",\"beginCaptures\":{\"1\":{\"name\":\"meta.brace.round.awk\"},\"2\":{\"name\":\"punctuation.definition.regex.begin.awk\"}},\"contentName\":\"string.regexp\",\"end\":\"/\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.regex.end.awk\"}},\"patterns\":[{\"include\":\"source.regexp\"}]},\"regex-as-nth-argument\":{\"begin\":\"(,)\\\\s*(/)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.separator.parameters.awk\"},\"2\":{\"name\":\"punctuation.definition.regex.begin.awk\"}},\"contentName\":\"string.regexp\",\"end\":\"/\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.regex.end.awk\"}},\"patterns\":[{\"include\":\"source.regexp\"}]},\"regexp-as-pattern\":{\"begin\":\"/\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.regex.begin.awk\"}},\"contentName\":\"string.regexp\",\"end\":\"/\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.regex.end.awk\"}},\"patterns\":[{\"include\":\"source.regexp\"}]},\"regexp-in-expression\":{\"patterns\":[{\"include\":\"#regex-as-assignment\"},{\"include\":\"#regex-as-comparison\"},{\"include\":\"#regex-as-first-argument\"},{\"include\":\"#regex-as-nth-argument\"}]},\"string-constant\":{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.awk\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.awk\"}},\"name\":\"string.quoted.double.awk\",\"patterns\":[{\"include\":\"#escaped-char\"}]},\"variable\":{\"patterns\":[{\"match\":\"\\\\$[0-9]+\",\"name\":\"variable.language.awk\"},{\"match\":\"\\\\b(?:FILENAME|FS|NF|NR|OFMT|OFS|ORS|RS)\\\\b\",\"name\":\"variable.language.awk\"},{\"match\":\"\\\\b(?:ARGC|ARGV|CONVFMT|ENVIRON|FNR|RLENGTH|RSTART|SUBSEP)\\\\b\",\"name\":\"variable.language.nawk\"},{\"match\":\"\\\\b(?:ARGIND|ERRNO|FIELDWIDTHS|IGNORECASE|RT)\\\\b\",\"name\":\"variable.language.gawk\"}]}},\"scopeName\":\"source.awk\"}"))];
2
+ export { awk_default as default };
@@ -0,0 +1,2 @@
1
+ var ballerina_default = [Object.freeze(JSON.parse("{\"displayName\":\"Ballerina\",\"fileTypes\":[\"bal\"],\"name\":\"ballerina\",\"patterns\":[{\"include\":\"#statements\"}],\"repository\":{\"access-modifier\":{\"patterns\":[{\"match\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(p(?:ublic|rivate))(?![$_[:alnum:]])(?:(?=\\\\.\\\\.\\\\.)|(?!\\\\.))\",\"name\":\"storage.modifier.ballerina keyword.other.ballerina\"}]},\"annotationAttachment\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.decorator.ballerina\"},\"2\":{\"name\":\"support.type.ballerina\"},\"3\":{\"name\":\"punctuation.decorator.ballerina\"},\"4\":{\"name\":\"support.type.ballerina\"}},\"match\":\"(@)([$_[:alpha:]][$_[:alnum:]]*)\\\\s*(:?)\\\\s*((?:[$_[:alpha:]][$_[:alnum:]]*)?)\"}]},\"annotationDefinition\":{\"patterns\":[{\"begin\":\"\\\\bannotation\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.ballerina\"}},\"end\":\";\",\"patterns\":[{\"include\":\"#code\"}]}]},\"array-literal\":{\"begin\":\"\\\\s*(\\\\[)\",\"beginCaptures\":{\"1\":{\"name\":\"meta.brace.square.ballerina\"}},\"end\":\"]\",\"endCaptures\":{\"0\":{\"name\":\"meta.brace.square.ballerina\"}},\"name\":\"meta.array.literal.ballerina\",\"patterns\":[{\"include\":\"#expression\"},{\"include\":\"#punctuation-comma\"}]},\"booleans\":{\"patterns\":[{\"match\":\"\\\\b(true|false)\\\\b\",\"name\":\"constant.language.boolean.ballerina\"}]},\"butClause\":{\"patterns\":[{\"begin\":\"=>\",\"beginCaptures\":{\"0\":{\"name\":\"meta.arrow.ballerina storage.type.function.arrow.ballerina\"}},\"end\":\",|(?=})\",\"patterns\":[{\"include\":\"#code\"}]}]},\"butExp\":{\"patterns\":[{\"begin\":\"\\\\bbut\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.ballerina\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina.documentation\"}},\"patterns\":[{\"include\":\"#butExpBody\"},{\"include\":\"#comment\"}]}]},\"butExpBody\":{\"patterns\":[{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina.documentation\"}},\"end\":\"(?=})\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina.documentation\"}},\"patterns\":[{\"include\":\"#parameter\"},{\"include\":\"#butClause\"},{\"include\":\"#comment\"}]}]},\"call\":{\"patterns\":[{\"match\":\"'?([$_[:alpha:]][$_[:alnum:]]*)\\\\s*(?=\\\\()\",\"name\":\"entity.name.function.ballerina\"}]},\"callableUnitBody\":{\"patterns\":[{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"end\":\"(?=})\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"patterns\":[{\"include\":\"#workerDef\"},{\"include\":\"#service-decl\"},{\"include\":\"#objectDec\"},{\"include\":\"#function-defn\"},{\"include\":\"#forkStatement\"},{\"include\":\"#code\"}]}]},\"class-body\":{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"name\":\"meta.class.body.ballerina\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#mdDocumentation\"},{\"include\":\"#function-defn\"},{\"include\":\"#var-expr\"},{\"include\":\"#variable-initializer\"},{\"include\":\"#access-modifier\"},{\"include\":\"#keywords\"},{\"begin\":\"(?<=:)\\\\s*\",\"end\":\"(?=[-\\\\])+,:;}\\\\s]|^\\\\s*$|^\\\\s*(?:abstract|async|class|const|declare|enum|export|function|import|interface|let|module|namespace|return|service|type|var)\\\\b)\"},{\"include\":\"#decl-block\"},{\"include\":\"#expression\"},{\"include\":\"#punctuation-comma\"},{\"include\":\"#punctuation-semicolon\"}]},\"class-defn\":{\"begin\":\"(\\\\s+)(class)\\\\b|^class\\\\b(?=\\\\s+|/[*/])\",\"beginCaptures\":{\"0\":{\"name\":\"storage.type.class.ballerina keyword.other.ballerina\"}},\"end\":\"(?<=})\",\"name\":\"meta.class.ballerina\",\"patterns\":[{\"include\":\"#keywords\"},{\"captures\":{\"0\":{\"name\":\"entity.name.type.class.ballerina\"}},\"match\":\"[$_[:alpha:]][$_[:alnum:]]*\"},{\"include\":\"#class-body\"}]},\"code\":{\"patterns\":[{\"include\":\"#booleans\"},{\"include\":\"#matchStatement\"},{\"include\":\"#butExp\"},{\"include\":\"#xml\"},{\"include\":\"#stringTemplate\"},{\"include\":\"#keywords\"},{\"include\":\"#strings\"},{\"include\":\"#comment\"},{\"include\":\"#mdDocumentation\"},{\"include\":\"#annotationAttachment\"},{\"include\":\"#numbers\"},{\"include\":\"#maps\"},{\"include\":\"#paranthesised\"},{\"include\":\"#paranthesisedBracket\"},{\"include\":\"#regex\"}]},\"comment\":{\"patterns\":[{\"match\":\"//.*\",\"name\":\"comment.ballerina\"}]},\"constrainType\":{\"patterns\":[{\"begin\":\"<\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.parameters.begin.ballerina\"}},\"end\":\">\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.parameters.end.ballerina\"}},\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#constrainType\"},{\"match\":\"\\\\b([$_[:alpha:]][$_[:alnum:]]*)\\\\b\",\"name\":\"storage.type.ballerina\"}]}]},\"control-statement\":{\"patterns\":[{\"begin\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(return)(?![$_[:alnum:]])(?:(?=\\\\.\\\\.\\\\.)|(?!\\\\.))\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.control.flow.ballerina\"}},\"end\":\"(?=[;}]|$|;|^\\\\s*$|^\\\\s*(?:abstract|async|class|const|declare|enum|export|function|import|interface|let|module|namespace|return|service|type|var)\\\\b)\",\"patterns\":[{\"include\":\"#expression\"}]},{\"include\":\"#for-loop\"},{\"include\":\"#if-statement\"},{\"match\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(else|if)(?![$_[:alnum:]])(?:(?=\\\\.\\\\.\\\\.)|(?!\\\\.))\",\"name\":\"keyword.control.conditional.ballerina\"}]},\"decl-block\":{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"end\":\"(?=} external;)|(})\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"name\":\"meta.block.ballerina\",\"patterns\":[{\"include\":\"#statements\"},{\"include\":\"#mdDocumentation\"}]},\"declaration\":{\"patterns\":[{\"include\":\"#import-declaration\"},{\"include\":\"#var-expr\"},{\"include\":\"#typeDefinition\"},{\"include\":\"#function-defn\"},{\"include\":\"#service-decl\"},{\"include\":\"#class-defn\"},{\"include\":\"#enum-decl\"},{\"include\":\"#source\"},{\"include\":\"#keywords\"}]},\"defaultValue\":{\"patterns\":[{\"begin\":\"[:=]\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.operator.ballerina\"}},\"end\":\"(?=[),])\",\"patterns\":[{\"include\":\"#code\"}]}]},\"defaultWithParentheses\":{\"patterns\":[{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}}}]},\"documentationBody\":{\"patterns\":[{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina.documentation\"}},\"end\":\"(?=})\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina.documentation\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.other.ballerina.documentation\"},\"2\":{\"name\":\"keyword.other.ballerina.documentation\"},\"3\":{\"name\":\"variable.parameter.ballerina.documentation\"},\"4\":{\"name\":\"keyword.other.ballerina.documentation\"}},\"match\":\"([FPRTV])(\\\\{\\\\{)(.*)(}})\"},{\"begin\":\"```\",\"end\":\"```\",\"name\":\"comment.block.code.ballerina.documentation\"},{\"begin\":\"``\",\"end\":\"``\",\"name\":\"comment.block.code.ballerina.documentation\"},{\"begin\":\"`\",\"end\":\"`\",\"name\":\"comment.block.code.ballerina.documentation\"},{\"match\":\".\",\"name\":\"comment.block.ballerina.documentation\"}]}]},\"documentationDef\":{\"patterns\":[{\"begin\":\"\\\\bd(?:ocumentation|eprecated)\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.ballerina\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"delimiter.curly\"}},\"patterns\":[{\"include\":\"#documentationBody\"},{\"include\":\"#comment\"}]}]},\"enum-decl\":{\"begin\":\"(?:\\\\b(const)\\\\s+)?\\\\b(enum)\\\\s+([$_[:alpha:]][$_[:alnum:]]*)\",\"beginCaptures\":{\"1\":{\"name\":\"storage.modifier.ballerina\"},\"2\":{\"name\":\"keyword.other.ballerina\"},\"3\":{\"name\":\"entity.name.type.enum.ballerina\"}},\"end\":\"(?<=})\",\"name\":\"meta.enum.declaration.ballerina\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#mdDocumentation\"},{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#mdDocumentation\"},{\"begin\":\"([$_[:alpha:]][$_[:alnum:]]*)\",\"beginCaptures\":{\"0\":{\"name\":\"variable.other.enummember.ballerina\"}},\"end\":\"(?=[,}]|$)\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#variable-initializer\"}]},{\"begin\":\"(?=(('([^'\\\\\\\\]|\\\\\\\\.)*')|(\\\"([^\\\"\\\\\\\\]|\\\\\\\\.)*\\\")|(`([^\\\\\\\\`]|\\\\\\\\.)*`)|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])+])))\",\"end\":\"(?=[,}]|$)\",\"patterns\":[{\"include\":\"#string\"},{\"include\":\"#array-literal\"},{\"include\":\"#comment\"},{\"include\":\"#variable-initializer\"}]},{\"include\":\"#punctuation-comma\"}]}]},\"errorDestructure\":{\"patterns\":[{\"begin\":\"error\",\"beginCaptures\":{\"0\":{\"name\":\"storage.type.ballerina\"}},\"end\":\"(?==>)\",\"patterns\":[{\"include\":\"#code\"}]}]},\"expression\":{\"patterns\":[{\"include\":\"#keywords\"},{\"include\":\"#expressionWithoutIdentifiers\"},{\"include\":\"#identifiers\"},{\"include\":\"#regex\"}]},\"expression-operators\":{\"patterns\":[{\"match\":\"(?:\\\\*|(?<!\\\\()/|[-%+])=\",\"name\":\"keyword.operator.assignment.compound.ballerina\"},{\"match\":\"(?:[\\\\&^]|<<|>>>??|\\\\|)=\",\"name\":\"keyword.operator.assignment.compound.bitwise.ballerina\"},{\"match\":\"<<|>>>?\",\"name\":\"keyword.operator.bitwise.shift.ballerina\"},{\"match\":\"[!=]==?\",\"name\":\"keyword.operator.comparison.ballerina\"},{\"match\":\"<=|>=|<>|[<>]\",\"name\":\"keyword.operator.relational.ballerina\"},{\"captures\":{\"1\":{\"name\":\"keyword.operator.logical.ballerina\"},\"2\":{\"name\":\"keyword.operator.assignment.compound.ballerina\"},\"3\":{\"name\":\"keyword.operator.arithmetic.ballerina\"}},\"match\":\"(?<=[$_[:alnum:]])(!)\\\\s*(?:(/=)|(/)(?![*/]))\"},{\"match\":\"!|&&|\\\\|\\\\||\\\\?\\\\?\",\"name\":\"keyword.operator.logical.ballerina\"},{\"match\":\"[\\\\&^|~]\",\"name\":\"keyword.operator.bitwise.ballerina\"},{\"match\":\"=\",\"name\":\"keyword.operator.assignment.ballerina\"},{\"match\":\"--\",\"name\":\"keyword.operator.decrement.ballerina\"},{\"match\":\"\\\\+\\\\+\",\"name\":\"keyword.operator.increment.ballerina\"},{\"match\":\"[-%*+/]\",\"name\":\"keyword.operator.arithmetic.ballerina\"}]},\"expressionWithoutIdentifiers\":{\"patterns\":[{\"include\":\"#xml\"},{\"include\":\"#string\"},{\"include\":\"#stringTemplate\"},{\"include\":\"#comment\"},{\"include\":\"#object-literal\"},{\"include\":\"#ternary-expression\"},{\"include\":\"#expression-operators\"},{\"include\":\"#literal\"},{\"include\":\"#paranthesised\"},{\"include\":\"#regex\"}]},\"flags-on-off\":{\"name\":\"meta.flags.regexp.ballerina\",\"patterns\":[{\"begin\":\"(\\\\??)([imsx]*)(-?)([imsx]*)(:)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.other.non-capturing-group-begin.regexp.ballerina\"},\"2\":{\"name\":\"keyword.other.non-capturing-group.flags-on.regexp.ballerina\"},\"3\":{\"name\":\"punctuation.other.non-capturing-group.off.regexp.ballerina\"},\"4\":{\"name\":\"keyword.other.non-capturing-group.flags-off.regexp.ballerina\"},\"5\":{\"name\":\"punctuation.other.non-capturing-group-end.regexp.ballerina\"}},\"end\":\"()\",\"name\":\"constant.other.flag.regexp.ballerina\",\"patterns\":[{\"include\":\"#regexp\"},{\"include\":\"#template-substitution-element\"}]}]},\"for-loop\":{\"begin\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))foreach\\\\s*\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.control.loop.ballerina\"},\"1\":{\"name\":\"support.type.primitive.ballerina\"}},\"end\":\"(?=\\\\{)\",\"patterns\":[{\"match\":\"\\\\bin\\\\b\",\"name\":\"keyword.other.ballerina\"},{\"include\":\"#identifiers\"},{\"include\":\"#comment\"},{\"include\":\"#var-expr\"},{\"include\":\"#expression\"}]},\"forkBody\":{\"patterns\":[{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"end\":\"(?=})\",\"patterns\":[{\"include\":\"#workerDef\"}]}]},\"forkStatement\":{\"patterns\":[{\"begin\":\"\\\\bfork\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.control.ballerina\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"patterns\":[{\"include\":\"#forkBody\"}]}]},\"function-body\":{\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#functionParameters\"},{\"include\":\"#decl-block\"},{\"begin\":\"=>\",\"beginCaptures\":{\"0\":{\"name\":\"meta.arrow.ballerina storage.type.function.arrow.ballerina\"}},\"end\":\"(?=;)|(?=,)|(?=\\\\);)\",\"name\":\"meta.block.ballerina\",\"patterns\":[{\"include\":\"#natural-expr\"},{\"include\":\"#statements\"},{\"include\":\"#punctuation-comma\"}]},{\"match\":\"\\\\*\",\"name\":\"keyword.generator.asterisk.ballerina\"}]},\"function-defn\":{\"begin\":\"(?:(p(?:ublic|rivate))\\\\s+)?(function)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.ballerina\"},\"2\":{\"name\":\"keyword.other.ballerina\"}},\"end\":\"(?<=;)|(?<=})|(?<=,)|(?=\\\\);)\",\"name\":\"meta.function.ballerina\",\"patterns\":[{\"match\":\"\\\\bexternal\\\\b\",\"name\":\"keyword.ballerina\"},{\"include\":\"#stringTemplate\"},{\"include\":\"#annotationAttachment\"},{\"include\":\"#functionReturns\"},{\"include\":\"#functionName\"},{\"include\":\"#functionParameters\"},{\"include\":\"#punctuation-semicolon\"},{\"include\":\"#function-body\"},{\"include\":\"#regex\"}]},\"function-parameters-body\":{\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#numbers\"},{\"include\":\"#string\"},{\"include\":\"#annotationAttachment\"},{\"include\":\"#recordLiteral\"},{\"include\":\"#keywords\"},{\"include\":\"#parameter-name\"},{\"include\":\"#array-literal\"},{\"include\":\"#variable-initializer\"},{\"include\":\"#identifiers\"},{\"include\":\"#regex\"},{\"match\":\",\",\"name\":\"punctuation.separator.parameter.ballerina\"}]},\"functionName\":{\"patterns\":[{\"match\":\"\\\\bfunction\\\\b\",\"name\":\"keyword.other.ballerina\"},{\"include\":\"#type-primitive\"},{\"include\":\"#self-literal\"},{\"include\":\"#string\"},{\"captures\":{\"2\":{\"name\":\"variable.language.this.ballerina\"},\"3\":{\"name\":\"keyword.other.ballerina\"},\"4\":{\"name\":\"support.type.primitive.ballerina\"},\"5\":{\"name\":\"storage.type.ballerina\"},\"6\":{\"name\":\"meta.definition.function.ballerina entity.name.function.ballerina\"}},\"match\":\"\\\\s+(\\\\b(self)|\\\\b(is|new|isolated|null|function|in)\\\\b|(string|int|boolean|float|byte|decimal|json|xml|anydata)\\\\b|\\\\b(readonly|error|map)\\\\b|([$_[:alpha:]][$_[:alnum:]]*))\"}]},\"functionParameters\":{\"begin\":\"[(\\\\[]\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.parameters.begin.ballerina\"}},\"end\":\"[])]\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.parameters.end.ballerina\"}},\"name\":\"meta.parameters.ballerina\",\"patterns\":[{\"include\":\"#function-parameters-body\"}]},\"functionReturns\":{\"begin\":\"\\\\s*(returns)\\\\s*\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.ballerina\"}},\"end\":\"(?==>)|(=)|(?=\\\\{)|(\\\\))|(?=;)\",\"endCaptures\":{\"1\":{\"name\":\"keyword.operator.ballerina\"}},\"name\":\"meta.type.function.return.ballerina\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#string\"},{\"include\":\"#numbers\"},{\"include\":\"#keywords\"},{\"include\":\"#type-primitive\"},{\"captures\":{\"1\":{\"name\":\"support.type.primitive.ballerina\"}},\"match\":\"\\\\s*\\\\b(var)(?=\\\\s+|[?\\\\[])\"},{\"match\":\"\\\\|\",\"name\":\"keyword.operator.ballerina\"},{\"match\":\"\\\\?\",\"name\":\"keyword.operator.optional.ballerina\"},{\"include\":\"#type-annotation\"},{\"include\":\"#type-tuple\"},{\"include\":\"#keywords\"},{\"match\":\"[$_[:alpha:]][$_[:alnum:]]*\",\"name\":\"variable.other.readwrite.ballerina\"}]},\"functionType\":{\"patterns\":[{\"begin\":\"\\\\bfunction\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.ballerina\"}},\"end\":\"(?=,)|(?=\\\\|)|(?=:)|(?==>)|(?=\\\\))|(?=])\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#functionTypeParamList\"},{\"include\":\"#functionTypeReturns\"}]}]},\"functionTypeParamList\":{\"patterns\":[{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"delimiter.parenthesis\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"delimiter.parenthesis\"}},\"patterns\":[{\"match\":\"public\",\"name\":\"keyword\"},{\"include\":\"#annotationAttachment\"},{\"include\":\"#recordLiteral\"},{\"include\":\"#record\"},{\"include\":\"#objectDec\"},{\"include\":\"#functionType\"},{\"include\":\"#constrainType\"},{\"include\":\"#parameterTuple\"},{\"include\":\"#functionTypeType\"},{\"include\":\"#comment\"}]}]},\"functionTypeReturns\":{\"patterns\":[{\"begin\":\"\\\\breturns\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword\"}},\"end\":\"(?=,)|\\\\||(?=])|(?=\\\\))\",\"patterns\":[{\"include\":\"#functionTypeReturnsParameter\"},{\"include\":\"#comment\"}]}]},\"functionTypeReturnsParameter\":{\"patterns\":[{\"begin\":\"((?=record|object|function)|[$_[:alpha:]][$_[:alnum:]]*)\",\"beginCaptures\":{\"0\":{\"name\":\"storage.type.ballerina\"}},\"end\":\"(?=,)|[:|]|(?==>)|(?=\\\\))|(?=])\",\"patterns\":[{\"include\":\"#record\"},{\"include\":\"#objectDec\"},{\"include\":\"#functionType\"},{\"include\":\"#constrainType\"},{\"include\":\"#defaultValue\"},{\"include\":\"#comment\"},{\"include\":\"#parameterTuple\"},{\"match\":\"[$_[:alpha:]][$_[:alnum:]]*\",\"name\":\"default.variable.parameter.ballerina\"}]}]},\"functionTypeType\":{\"patterns\":[{\"begin\":\"[$_[:alpha:]][$_[:alnum:]]*\",\"beginCaptures\":{\"0\":{\"name\":\"storage.type.ballerina\"}},\"end\":\"(?=,)|\\\\||(?=])|(?=\\\\))\"}]},\"identifiers\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.accessor.ballerina\"},\"2\":{\"name\":\"punctuation.accessor.optional.ballerina\"},\"3\":{\"name\":\"entity.name.function.ballerina\"}},\"match\":\"(?:(?:(\\\\.)|(\\\\?\\\\.(?!\\\\s*\\\\d)))\\\\s*)?([$_[:alpha:]][$_[:alnum:]]*)(?=\\\\s*=\\\\s*((((function\\\\s*[(*<])|(function\\\\s+)|([$_[:alpha:]][$_[:alnum:]]*\\\\s*=>)))|((((<\\\\s*)$|((<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<])*>)*>)*>\\\\s*)?\\\\(\\\\s*((([\\\\[{]\\\\s*)?)$|((\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})\\\\s*((:\\\\s*\\\\{?)$|((\\\\s*([^()<>{}]|<([^<>]|<([^<>]|<[^<>]+>)+>)+>|\\\\([^()]+\\\\)|\\\\{[^{}]+})+\\\\s*)?=\\\\s*)))|((\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*])\\\\s*((:\\\\s*\\\\[?)$|((\\\\s*([^()<>{}]|<([^<>]|<([^<>]|<[^<>]+>)+>)+>|\\\\([^()]+\\\\)|\\\\{[^{}]+})+\\\\s*)?=\\\\s*))))))|((<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<])*>)*>)*>\\\\s*)?\\\\(\\\\s*(/\\\\*([^*]|(\\\\*[^/]))*\\\\*/\\\\s*)*((\\\\)\\\\s*:)|((\\\\.\\\\.\\\\.\\\\s*)?[$_[:alpha:]][$_[:alnum:]]*\\\\s*:)))|((<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<])*>)*>)*>\\\\s*)?\\\\(\\\\s*(/\\\\*([^*]|(\\\\*[^/]))*\\\\*/\\\\s*)*(([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*])|(\\\\.\\\\.\\\\.\\\\s*[$_[:alpha:]]))([^\\\"'()`]|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|('([^'\\\\\\\\]|\\\\\\\\.)*')|(\\\"([^\\\"\\\\\\\\]|\\\\\\\\.)*\\\")|(`([^\\\\\\\\`]|\\\\\\\\.)*`))*)?\\\\)(\\\\s*:\\\\s*([^()<>{}]|<([^<>]|<([^<>]|<[^<>]+>)+>)+>|\\\\([^()]+\\\\)|\\\\{[^{}]+})+)?\\\\s*=>)))))\"},{\"captures\":{\"1\":{\"name\":\"punctuation.accessor.ballerina\"},\"2\":{\"name\":\"punctuation.accessor.optional.ballerina\"},\"3\":{\"name\":\"entity.name.function.ballerina\"}},\"match\":\"(?:(\\\\.)|(\\\\?\\\\.(?!\\\\s*\\\\d)))\\\\s*(#?[$_[:alpha:]][$_[:alnum:]]*)\\\\s*(?=\\\\()\"},{\"captures\":{\"1\":{\"name\":\"punctuation.accessor.ballerina\"},\"2\":{\"name\":\"punctuation.accessor.optional.ballerina\"},\"3\":{\"name\":\"variable.other.property.ballerina\"}},\"match\":\"(?:(\\\\.)|(\\\\?\\\\.(?!\\\\s*\\\\d)))\\\\s*(#?[$_[:alpha:]][$_[:alnum:]]*)\"},{\"include\":\"#type-primitive\"},{\"include\":\"#self-literal\"},{\"match\":\"\\\\b(check|foreach|if|checkpanic)\\\\b\",\"name\":\"keyword.control.ballerina\"},{\"include\":\"#natural-expr\"},{\"include\":\"#call\"},{\"match\":\"\\\\b(var)\\\\b\",\"name\":\"support.type.primitive.ballerina\"},{\"captures\":{\"1\":{\"name\":\"variable.other.readwrite.ballerina\"},\"3\":{\"name\":\"punctuation.accessor.ballerina\"},\"4\":{\"name\":\"entity.name.function.ballerina\"},\"5\":{\"name\":\"punctuation.definition.parameters.begin.ballerina\"},\"6\":{\"name\":\"punctuation.definition.parameters.end.ballerina\"}},\"match\":\"([$_[:alpha:]][$_[:alnum:]]*)((\\\\.)([$_[:alpha:]][$_[:alnum:]]*)(\\\\()(\\\\)))?\"},{\"match\":\"(')([$_[:alpha:]][$_[:alnum:]]*)\",\"name\":\"variable.other.property.ballerina\"},{\"include\":\"#type-annotation\"}]},\"if-statement\":{\"patterns\":[{\"begin\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(?=\\\\bif\\\\b\\\\s*(?!\\\\{))\",\"end\":\"(?<=})\",\"patterns\":[{\"include\":\"#comment\"},{\"begin\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(if)\\\\s*(\\\\()?\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.conditional.ballerina\"},\"2\":{\"name\":\"meta.brace.round.ballerina\"}},\"end\":\"(\\\\))|(?=\\\\{)\",\"endCaptures\":{\"1\":{\"name\":\"meta.brace.round.ballerina\"}},\"patterns\":[{\"include\":\"#decl-block\"},{\"include\":\"#keywords\"},{\"include\":\"#identifiers\"},{\"include\":\"#type-primitive\"},{\"include\":\"#xml\"},{\"include\":\"#string\"},{\"include\":\"#stringTemplate\"},{\"include\":\"#comment\"},{\"include\":\"#ternary-expression\"},{\"include\":\"#expression-operators\"},{\"include\":\"#literal\"},{\"include\":\"#paranthesised\"},{\"include\":\"#regex\"}]},{\"begin\":\"(?<=\\\\))(?=[=\\\\s])\",\"end\":\"(?=\\\\{)\",\"patterns\":[{\"include\":\"#literal\"},{\"include\":\"#keywords\"}]},{\"include\":\"#decl-block\"}]}]},\"import-clause\":{\"patterns\":[{\"include\":\"#comment\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.default.ballerina\"},\"3\":{\"name\":\"variable.other.readwrite.ballerina meta.import.module.ballerina\"},\"5\":{\"name\":\"keyword.control.default.ballerina\"},\"6\":{\"name\":\"variable.other.readwrite.alias.ballerina\"}},\"match\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(?:\\\\b(default)|(\\\\*)|\\\\b([$_[:alpha:]][$_[:alnum:]]*))\"},{\"match\":\"([$_[:alpha:]][$_[:alnum:]]*)\",\"name\":\"variable.other.readwrite.alias.ballerina\"}]},\"import-declaration\":{\"begin\":\"\\\\bimport\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.control.import.ballerina\"}},\"end\":\";\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.terminator.statement.ballerina\"}},\"name\":\"meta.import.ballerina\",\"patterns\":[{\"match\":\"(')([$_[:alpha:]][$_[:alnum:]]*)\",\"name\":\"variable.other.property.ballerina\"},{\"include\":\"#keywords\"},{\"include\":\"#comment\"},{\"include\":\"#import-clause\"},{\"include\":\"#punctuation-accessor\"}]},\"keywords\":{\"patterns\":[{\"match\":\"\\\\b(fork|join|while|returns|transaction|transactional|retry|commit|rollback|typeof|enum|wait|match)\\\\b\",\"name\":\"keyword.control.ballerina\"},{\"match\":\"\\\\b(return|break|continue|check|checkpanic|panic|trap|from|where)\\\\b\",\"name\":\"keyword.control.flow.ballerina\"},{\"match\":\"\\\\b(public|private|external|return|record|object|remote|abstract|client|true|false|fail|import|version)\\\\b\",\"name\":\"keyword.other.ballerina\"},{\"match\":\"\\\\b(as|on|function|resource|listener|const|final|is|null|lock|annotation|source|worker|parameter|field|isolated|in)\\\\b\",\"name\":\"keyword.other.ballerina\"},{\"match\":\"\\\\b(xmlns|table|key|let|new|select|start|flush|default|do|base16|base64|conflict)\\\\b\",\"name\":\"keyword.other.ballerina\"},{\"match\":\"\\\\b(limit|outer|equals|order|by|ascending|descending|class|configurable|variable|module|service|group|collect)\\\\b\",\"name\":\"keyword.other.ballerina\"},{\"match\":\"(=>)\",\"name\":\"meta.arrow.ballerina storage.type.function.arrow.ballerina\"},{\"match\":\"([-!%+]|~=|===?|=|!==??|[\\\\&<>|]|\\\\?:|\\\\.\\\\.\\\\.|<=|>=|&&|\\\\|\\\\||~|>>>??)\",\"name\":\"keyword.operator.ballerina\"},{\"include\":\"#types\"},{\"include\":\"#self-literal\"},{\"include\":\"#type-primitive\"}]},\"literal\":{\"patterns\":[{\"include\":\"#booleans\"},{\"include\":\"#numbers\"},{\"include\":\"#strings\"},{\"include\":\"#maps\"},{\"include\":\"#self-literal\"},{\"include\":\"#array-literal\"}]},\"maps\":{\"patterns\":[{\"begin\":\"\\\\{\",\"end\":\"}\",\"patterns\":[{\"include\":\"#code\"}]}]},\"matchBindingPattern\":{\"patterns\":[{\"begin\":\"var\",\"beginCaptures\":{\"0\":{\"name\":\"storage.type.ballerina\"}},\"end\":\"(?==>)|,\",\"patterns\":[{\"include\":\"#errorDestructure\"},{\"include\":\"#code\"},{\"match\":\"[$_[:alpha:]][$_[:alnum:]]*\",\"name\":\"variable.parameter.ballerina\"}]}]},\"matchStatement\":{\"patterns\":[{\"begin\":\"\\\\bmatch\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.control.ballerina\"}},\"end\":\"}\",\"patterns\":[{\"include\":\"#matchStatementBody\"},{\"include\":\"#comment\"},{\"include\":\"#code\"}]}]},\"matchStatementBody\":{\"patterns\":[{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina.documentation\"}},\"end\":\"(?=})\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina.documentation\"}},\"patterns\":[{\"include\":\"#literal\"},{\"include\":\"#matchBindingPattern\"},{\"include\":\"#matchStatementPatternClause\"},{\"include\":\"#comment\"},{\"include\":\"#code\"}]}]},\"matchStatementPatternClause\":{\"patterns\":[{\"begin\":\"=>\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.ballerina\"}},\"end\":\"((})|[,;])\",\"patterns\":[{\"include\":\"#callableUnitBody\"},{\"include\":\"#code\"}]}]},\"mdDocumentation\":{\"begin\":\"#\",\"end\":\"[\\\\n\\\\r]+\",\"name\":\"comment.mddocs.ballerina\",\"patterns\":[{\"include\":\"#mdDocumentationReturnParamDescription\"},{\"include\":\"#mdDocumentationParamDescription\"}]},\"mdDocumentationParamDescription\":{\"patterns\":[{\"begin\":\"(\\\\+\\\\s+)('?[$_[:alpha:]][$_[:alnum:]]*)(\\\\s*-\\\\s+)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.operator.ballerina\"},\"2\":{\"name\":\"variable.other.readwrite.ballerina\"},\"3\":{\"name\":\"keyword.operator.ballerina\"}},\"end\":\"(?=[^\\\\n\\\\r#]|# *?\\\\+)\",\"patterns\":[{\"match\":\"#.*\",\"name\":\"comment.mddocs.paramdesc.ballerina\"}]}]},\"mdDocumentationReturnParamDescription\":{\"patterns\":[{\"begin\":\"(#) *?(\\\\+) *(return) *(-)?(.*)\",\"beginCaptures\":{\"1\":{\"name\":\"comment.mddocs.ballerina\"},\"2\":{\"name\":\"keyword.ballerina\"},\"3\":{\"name\":\"keyword.ballerina\"},\"4\":{\"name\":\"keyword.ballerina\"},\"5\":{\"name\":\"comment.mddocs.returnparamdesc.ballerina\"}},\"end\":\"(?=[^\\\\n\\\\r#]|# *?\\\\+)\",\"patterns\":[{\"match\":\"#.*\",\"name\":\"comment.mddocs.returnparamdesc.ballerina\"}]}]},\"multiType\":{\"patterns\":[{\"match\":\"(?<=\\\\|)([$_[:alpha:]][$_[:alnum:]]*)|([$_[:alpha:]][$_[:alnum:]]*)(?=\\\\|)\",\"name\":\"storage.type.ballerina\"},{\"match\":\"\\\\|\",\"name\":\"keyword.operator.ballerina\"}]},\"natural-expr\":{\"patterns\":[{\"begin\":\"natural\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.other.ballerina\"}},\"end\":\"(?=})\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"patterns\":[{\"include\":\"#natural-expr-body\"}]}]},\"natural-expr-body\":{\"patterns\":[{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"contentName\":\"string.template.ballerina\",\"end\":\"(?=})\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"patterns\":[{\"include\":\"#template-substitution-element\"},{\"include\":\"#string-character-escape\"},{\"include\":\"#templateVariable\"}]}]},\"numbers\":{\"patterns\":[{\"match\":\"\\\\b(?:0[Xx][A-Fa-f\\\\d]+\\\\b|\\\\d+(?:\\\\.(?:\\\\d+|$))?)\",\"name\":\"constant.numeric.decimal.ballerina\"}]},\"object-literal\":{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"name\":\"meta.objectliteral.ballerina\",\"patterns\":[{\"include\":\"#object-member\"},{\"include\":\"#punctuation-comma\"}]},\"object-member\":{\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#function-defn\"},{\"include\":\"#literal\"},{\"include\":\"#keywords\"},{\"include\":\"#expression\"},{\"begin\":\"(?=\\\\[)\",\"end\":\"(?=:)|((?<=])(?=\\\\s*[(<]))\",\"name\":\"meta.object.member.ballerina meta.object-literal.key.ballerina\",\"patterns\":[{\"include\":\"#comment\"}]},{\"begin\":\"(?=[\\\"'`])\",\"end\":\"(?=:)|((?<=[\\\"'`])(?=((\\\\s*[(,<}])|(\\\\n*})|(\\\\s+(as)\\\\s+))))\",\"name\":\"meta.object.member.ballerina meta.object-literal.key.ballerina\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#string\"}]},{\"begin\":\"(?=\\\\b((?<!\\\\$)0[Xx]\\\\h[_\\\\h]*(n)?\\\\b(?!\\\\$))|\\\\b((?<!\\\\$)0[Bb][01][01_]*(n)?\\\\b(?!\\\\$))|\\\\b((?<!\\\\$)0[Oo]?[0-7][0-7_]*(n)?\\\\b(?!\\\\$))|((?<!\\\\$)(?:\\\\b[0-9][0-9_]*(\\\\.)[0-9][0-9_]*[Ee][-+]?[0-9][0-9_]*(n)?\\\\b|\\\\b[0-9][0-9_]*(\\\\.)[Ee][-+]?[0-9][0-9_]*(n)?\\\\b|\\\\B(\\\\.)[0-9][0-9_]*[Ee][-+]?[0-9][0-9_]*(n)?\\\\b|\\\\b[0-9][0-9_]*[Ee][-+]?[0-9][0-9_]*(n)?\\\\b|\\\\b[0-9][0-9_]*(\\\\.)[0-9][0-9_]*(n)?\\\\b|\\\\b[0-9][0-9_]*(\\\\.)(n)?\\\\B|\\\\B(\\\\.)[0-9][0-9_]*(n)?\\\\b|\\\\b[0-9][0-9_]*(n)?\\\\b(?!\\\\.))(?!\\\\$)))\",\"end\":\"(?=:)|(?=\\\\s*([(,<}])|(\\\\s+as\\\\s+))\",\"name\":\"meta.object.member.ballerina meta.object-literal.key.ballerina\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#numbers\"}]},{\"begin\":\"(?<=[]\\\"'`])(?=\\\\s*[(<])\",\"end\":\"(?=[,;}])|(?<=})\",\"name\":\"meta.method.declaration.ballerina\",\"patterns\":[{\"include\":\"#function-body\"}]},{\"captures\":{\"0\":{\"name\":\"meta.object-literal.key.ballerina\"},\"1\":{\"name\":\"constant.numeric.decimal.ballerina\"}},\"match\":\"(?![$_[:alpha:]])(\\\\d+)\\\\s*(?=(/\\\\*([^*]|(\\\\*[^/]))*\\\\*/\\\\s*)*:)\",\"name\":\"meta.object.member.ballerina\"},{\"captures\":{\"0\":{\"name\":\"meta.object-literal.key.ballerina\"},\"1\":{\"name\":\"entity.name.function.ballerina\"}},\"match\":\"([$_[:alpha:]][$_[:alnum:]]*)\\\\s*(?=(/\\\\*([^*]|(\\\\*[^/]))*\\\\*/\\\\s*)*:(\\\\s*/\\\\*([^*]|(\\\\*[^/]))*\\\\*/)*\\\\s*((((function\\\\s*[(*<])|(function\\\\s+)|([$_[:alpha:]][$_[:alnum:]]*\\\\s*=>)))|((((<\\\\s*)$|((<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<])*>)*>)*>\\\\s*)?\\\\(\\\\s*((([\\\\[{]\\\\s*)?)$|((\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})\\\\s*((:\\\\s*\\\\{?)$|((\\\\s*([^()<>{}]|<([^<>]|<([^<>]|<[^<>]+>)+>)+>|\\\\([^()]+\\\\)|\\\\{[^{}]+})+\\\\s*)?=\\\\s*)))|((\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*])\\\\s*((:\\\\s*\\\\[?)$|((\\\\s*([^()<>{}]|<([^<>]|<([^<>]|<[^<>]+>)+>)+>|\\\\([^()]+\\\\)|\\\\{[^{}]+})+\\\\s*)?=\\\\s*))))))|((<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<])*>)*>)*>\\\\s*)?\\\\(\\\\s*(/\\\\*([^*]|(\\\\*[^/]))*\\\\*/\\\\s*)*((\\\\)\\\\s*:)|((\\\\.\\\\.\\\\.\\\\s*)?[$_[:alpha:]][$_[:alnum:]]*\\\\s*:)))|((<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<]|<\\\\s*([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*]))([^<=>]|=[^<])*>)*>)*>\\\\s*)?\\\\(\\\\s*(/\\\\*([^*]|(\\\\*[^/]))*\\\\*/\\\\s*)*(([$_[:alpha:]]|(\\\\{([^{}]|(\\\\{([^{}]|\\\\{[^{}]*})*}))*})|(\\\\[([^]\\\\[]|(\\\\[([^]\\\\[]|\\\\[[^]\\\\[]*])*]))*])|(\\\\.\\\\.\\\\.\\\\s*[$_[:alpha:]]))([^\\\"'()`]|(\\\\(([^()]|(\\\\(([^()]|\\\\([^()]*\\\\))*\\\\)))*\\\\))|('([^'\\\\\\\\]|\\\\\\\\.)*')|(\\\"([^\\\"\\\\\\\\]|\\\\\\\\.)*\\\")|(`([^\\\\\\\\`]|\\\\\\\\.)*`))*)?\\\\)(\\\\s*:\\\\s*([^()<>{}]|<([^<>]|<([^<>]|<[^<>]+>)+>)+>|\\\\([^()]+\\\\)|\\\\{[^{}]+})+)?\\\\s*=>)))))\",\"name\":\"meta.object.member.ballerina\"},{\"captures\":{\"0\":{\"name\":\"meta.object-literal.key.ballerina\"}},\"match\":\"[$_[:alpha:]][$_[:alnum:]]*\\\\s*(?=(/\\\\*([^*]|(\\\\*[^/]))*\\\\*/\\\\s*)*:)\",\"name\":\"meta.object.member.ballerina\"},{\"begin\":\"\\\\.\\\\.\\\\.\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.operator.spread.ballerina\"}},\"end\":\"(?=[,}])\",\"name\":\"meta.object.member.ballerina\",\"patterns\":[{\"include\":\"#expression\"}]},{\"captures\":{\"1\":{\"name\":\"variable.other.readwrite.ballerina\"}},\"match\":\"([$_[:alpha:]][$_[:alnum:]]*)\\\\s*(?=[,}]|$|//|/\\\\*)\",\"name\":\"meta.object.member.ballerina\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.as.ballerina\"},\"2\":{\"name\":\"storage.modifier.ballerina\"}},\"match\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(as)\\\\s+(const)(?=\\\\s*([,}]|$))\",\"name\":\"meta.object.member.ballerina\"},{\"begin\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(as)\\\\s+\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.as.ballerina\"}},\"end\":\"(?=[-\\\\])+,:;>?}]|\\\\|\\\\||&&|!==|$|^|((?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(as)\\\\s+))\",\"name\":\"meta.object.member.ballerina\"},{\"begin\":\"(?=[$_[:alpha:]][$_[:alnum:]]*\\\\s*=)\",\"end\":\"(?=[,}]|$|//|/\\\\*)\",\"name\":\"meta.object.member.ballerina\",\"patterns\":[{\"include\":\"#expression\"}]}]},\"objectDec\":{\"patterns\":[{\"begin\":\"\\\\bobject\\\\b(?!:)\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.other.ballerina\"}},\"end\":\"(?<=})\",\"patterns\":[{\"include\":\"#decl-block\"}]}]},\"objectInitBody\":{\"patterns\":[{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"end\":\"(?=})\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#code\"}]}]},\"objectInitParameters\":{\"patterns\":[{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.parameters.begin.ballerina\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.parameters.end.ballerina\"}},\"patterns\":[{\"include\":\"#code\"},{\"match\":\"\\\\b([$_[:alpha:]][$_[:alnum:]]*)\\\\b\",\"name\":\"variable.parameter.ballerina\"}]}]},\"objectMemberFunctionDec\":{\"patterns\":[{\"begin\":\"\\\\bfunction\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.ballerina\"}},\"end\":\";\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"patterns\":[{\"include\":\"#functionParameters\"},{\"match\":\"\\\\breturns\\\\b\",\"name\":\"keyword.ballerina\"},{\"include\":\"#code\"}]}]},\"parameter\":{\"patterns\":[{\"begin\":\"((?=record|object|function)|([$_[:alpha:]][$_[:alnum:]]*)(?=\\\\|)|[$_[:alpha:]][$_[:alnum:]]*)\",\"beginCaptures\":{\"0\":{\"name\":\"storage.type.ballerina\"}},\"end\":\"[,:|]|(?==>)|(?=\\\\))|(?=])\",\"patterns\":[{\"include\":\"#parameterWithDescriptor\"},{\"include\":\"#record\"},{\"include\":\"#objectDec\"},{\"include\":\"#functionType\"},{\"include\":\"#constrainType\"},{\"include\":\"#defaultValue\"},{\"include\":\"#comment\"},{\"include\":\"#parameterTuple\"},{\"match\":\"[$_[:alpha:]][$_[:alnum:]]*\",\"name\":\"default.variable.parameter.ballerina\"}]}]},\"parameter-name\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"support.type.primitive.ballerina\"}},\"match\":\"\\\\s*\\\\b(var)\\\\s+\"},{\"captures\":{\"2\":{\"name\":\"keyword.operator.rest.ballerina\"},\"3\":{\"name\":\"support.type.primitive.ballerina\"},\"4\":{\"name\":\"keyword.other.ballerina\"},\"5\":{\"name\":\"constant.language.boolean.ballerina\"},\"6\":{\"name\":\"keyword.control.flow.ballerina\"},\"7\":{\"name\":\"storage.type.ballerina\"},\"8\":{\"name\":\"variable.parameter.ballerina\"},\"9\":{\"name\":\"variable.parameter.ballerina\"},\"10\":{\"name\":\"keyword.operator.optional.ballerina\"}},\"match\":\"(?:(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))\\\\s+)?(?:(\\\\.\\\\.\\\\.)\\\\s*)?(?<![:=])(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(?:(this)|(string|int|boolean|float|byte|decimal|json|xml|anydata)|\\\\b(is|new|isolated|null|function|in)\\\\b|\\\\b(true|false)\\\\b|\\\\b(check|foreach|if|checkpanic)\\\\b|\\\\b(readonly|error|map)\\\\b|([$_[:alpha:]][$_[:alnum:]]*))(?![$_[:alnum:]])(?:(?=\\\\.\\\\.\\\\.)|(?!\\\\.))\\\\s*(\\\\??)\"}]},\"parameterTuple\":{\"patterns\":[{\"begin\":\"\\\\[\",\"end\":\"(?=,)|(?=\\\\|)|(?=:)|(?==>)|(?=\\\\))\",\"patterns\":[{\"include\":\"#record\"},{\"include\":\"#objectDec\"},{\"include\":\"#parameterTupleType\"},{\"include\":\"#parameterTupleEnd\"},{\"include\":\"#comment\"}]}]},\"parameterTupleEnd\":{\"patterns\":[{\"begin\":\"]\",\"end\":\"(?=,)|(?=\\\\|)|(?=:)|(?==>)|(?=\\\\))\",\"patterns\":[{\"include\":\"#defaultWithParentheses\"},{\"match\":\"[$_[:alpha:]][$_[:alnum:]]*\",\"name\":\"default.variable.parameter.ballerina\"}]}]},\"parameterTupleType\":{\"patterns\":[{\"begin\":\"[$_[:alpha:]][$_[:alnum:]]*\",\"beginCaptures\":{\"0\":{\"name\":\"storage.type.ballerina\"}},\"end\":\"[,|]|(?=])\"}]},\"parameterWithDescriptor\":{\"patterns\":[{\"begin\":\"&\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.operator.ballerina\"}},\"end\":\"(?=,)|(?=\\\\|)|(?=\\\\))\",\"patterns\":[{\"include\":\"#parameter\"}]}]},\"parameters\":{\"patterns\":[{\"match\":\"\\\\s*(return|break|continue|check|checkpanic|panic|trap|from|where)\\\\b\",\"name\":\"keyword.control.flow.ballerina\"},{\"match\":\"\\\\s*(let|select)\\\\b\",\"name\":\"keyword.other.ballerina\"},{\"match\":\",\",\"name\":\"punctuation.separator.parameter.ballerina\"}]},\"paranthesised\":{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"meta.brace.round.ballerina\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"meta.brace.round.ballerina\"}},\"name\":\"meta.brace.round.block.ballerina\",\"patterns\":[{\"include\":\"#self-literal\"},{\"include\":\"#function-defn\"},{\"include\":\"#decl-block\"},{\"include\":\"#comment\"},{\"include\":\"#string\"},{\"include\":\"#parameters\"},{\"include\":\"#annotationAttachment\"},{\"include\":\"#recordLiteral\"},{\"include\":\"#stringTemplate\"},{\"include\":\"#parameter-name\"},{\"include\":\"#variable-initializer\"},{\"include\":\"#expression\"},{\"include\":\"#regex\"}]},\"paranthesisedBracket\":{\"patterns\":[{\"begin\":\"\\\\[\",\"end\":\"]\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#code\"}]}]},\"punctuation-accessor\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.accessor.ballerina\"},\"2\":{\"name\":\"punctuation.accessor.optional.ballerina\"}},\"match\":\"(\\\\.)|(\\\\?\\\\.(?!\\\\s*\\\\d))\"}]},\"punctuation-comma\":{\"patterns\":[{\"match\":\",\",\"name\":\"punctuation.separator.comma.ballerina\"}]},\"punctuation-semicolon\":{\"patterns\":[{\"match\":\";\",\"name\":\"punctuation.terminator.statement.ballerina\"}]},\"record\":{\"begin\":\"\\\\brecord\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.other.ballerina\"}},\"end\":\"(?<=})\",\"name\":\"meta.record.ballerina\",\"patterns\":[{\"include\":\"#recordBody\"}]},\"recordBody\":{\"patterns\":[{\"include\":\"#decl-block\"}]},\"recordLiteral\":{\"patterns\":[{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.block.ballerina\"}},\"patterns\":[{\"include\":\"#code\"}]}]},\"regex\":{\"patterns\":[{\"begin\":\"\\\\b(re)(\\\\s*)(`)\",\"beginCaptures\":{\"1\":{\"name\":\"support.type.primitive.ballerina\"},\"3\":{\"name\":\"punctuation.definition.regexp.template.begin.ballerina\"}},\"end\":\"`\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.regexp.template.end.ballerina\"}},\"name\":\"regexp.template.ballerina\",\"patterns\":[{\"include\":\"#template-substitution-element\"},{\"include\":\"#regexp\"}]}]},\"regex-character-class\":{\"patterns\":[{\"match\":\"\\\\\\\\[DSWdnrstw]|\\\\.\",\"name\":\"keyword.other.character-class.regexp.ballerina\"},{\"match\":\"\\\\\\\\[^Ppu]\",\"name\":\"constant.character.escape.backslash.regexp\"}]},\"regex-unicode-properties-general-category\":{\"patterns\":[{\"match\":\"(Lu|Ll|Lt|Lm|Lo?|Mn|Mc|Me?|Nd|Nl|No?|Pc|Pd|Ps|Pe|Pi|Pf|Po?|Sm|Sc|Sk|So?|Zs|Zl|Zp?|Cf|Cc|Cn|Co?)\",\"name\":\"constant.other.unicode-property-general-category.regexp.ballerina\"}]},\"regex-unicode-property-key\":{\"patterns\":[{\"begin\":\"([gs]c=)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.unicode-property-key.regexp.ballerina\"}},\"end\":\"()\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.other.unicode-property.end.regexp.ballerina\"}},\"name\":\"keyword.other.unicode-property-key.regexp.ballerina\",\"patterns\":[{\"include\":\"#regex-unicode-properties-general-category\"}]}]},\"regexp\":{\"patterns\":[{\"match\":\"[$^]\",\"name\":\"keyword.control.assertion.regexp.ballerina\"},{\"match\":\"[*+?]|\\\\{(\\\\d+,\\\\d+|\\\\d+,|,\\\\d+|\\\\d+)}\\\\??\",\"name\":\"keyword.operator.quantifier.regexp.ballerina\"},{\"match\":\"\\\\|\",\"name\":\"keyword.operator.or.regexp.ballerina\"},{\"begin\":\"(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.group.regexp.ballerina\"}},\"end\":\"(\\\\))\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.group.regexp.ballerina\"}},\"name\":\"meta.group.assertion.regexp.ballerina\",\"patterns\":[{\"include\":\"#template-substitution-element\"},{\"include\":\"#regexp\"},{\"include\":\"#flags-on-off\"},{\"include\":\"#unicode-property-escape\"}]},{\"begin\":\"(\\\\[)(\\\\^)?\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.character-class.start.regexp.ballerina\"},\"2\":{\"name\":\"keyword.operator.negation.regexp.ballerina\"}},\"end\":\"(])\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.character-class.end.regexp.ballerina\"}},\"name\":\"constant.other.character-class.set.regexp.ballerina\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.character.numeric.regexp\"},\"2\":{\"name\":\"constant.character.escape.backslash.regexp\"},\"3\":{\"name\":\"constant.character.numeric.regexp\"},\"4\":{\"name\":\"constant.character.escape.backslash.regexp\"}},\"match\":\"(?:.|(\\\\\\\\(?:[0-7]{3}|x\\\\h{2}|u\\\\h{4}))|(\\\\\\\\[^Ppu]))-(?:[^]\\\\\\\\]|(\\\\\\\\(?:[0-7]{3}|x\\\\h{2}|u\\\\h{4}))|(\\\\\\\\[^Ppu]))\",\"name\":\"constant.other.character-class.range.regexp.ballerina\"},{\"include\":\"#regex-character-class\"},{\"include\":\"#unicode-values\"},{\"include\":\"#unicode-property-escape\"}]},{\"include\":\"#template-substitution-element\"},{\"include\":\"#regex-character-class\"},{\"include\":\"#unicode-values\"},{\"include\":\"#unicode-property-escape\"}]},\"self-literal\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"variable.language.this.ballerina\"},\"2\":{\"name\":\"punctuation.accessor.ballerina\"},\"3\":{\"name\":\"entity.name.function.ballerina\"}},\"match\":\"\\\\b(self)\\\\b\\\\s*(.)\\\\s*([$_[:alpha:]][$_[:alnum:]]*)\\\\s*(?=\\\\()\"},{\"match\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))self\\\\b(?!\\\\$)\",\"name\":\"variable.language.this.ballerina\"}]},\"service-decl\":{\"begin\":\"\\\\bservice\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.ballerina\"}},\"end\":\"(?=;|^\\\\s*$|^\\\\s*(?:abstract|async|class|const|declare|enum|export|function|import|interface|let|module|namespace|return|service|type|var)\\\\b)|(?<=})|(?<=,)\",\"name\":\"meta.service.declaration.ballerina\",\"patterns\":[{\"include\":\"#class-defn\"},{\"include\":\"#serviceName\"},{\"include\":\"#serviceOn\"},{\"include\":\"#serviceBody\"},{\"include\":\"#objectDec\"}]},\"serviceBody\":{\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#mdDocumentation\"},{\"include\":\"#documentationDef\"},{\"include\":\"#decl-block\"}]},\"serviceName\":{\"patterns\":[{\"include\":\"#string\"},{\"match\":\"(/([$_[:alpha:]][$_[:alnum:]]*)|\\\"[$_[:alpha:]][$_[:alnum:]]*\\\")\",\"name\":\"entity.service.path.ballerina\"}]},\"serviceOn\":{\"patterns\":[{\"begin\":\"on\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.other.ballerina\"}},\"end\":\"(?=\\\\{)\",\"patterns\":[{\"include\":\"#code\"}]}]},\"source\":{\"patterns\":[{\"begin\":\"\\\\b(source)\\\\b\\\\s+([$_[:alpha:]][$_[:alnum:]]*)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.ballerina\"},\"2\":{\"name\":\"variable.other.readwrite.ballerina\"}},\"end\":\"(?=,)|(?=;)\"}]},\"statements\":{\"patterns\":[{\"include\":\"#stringTemplate\"},{\"include\":\"#declaration\"},{\"include\":\"#control-statement\"},{\"include\":\"#decl-block\"},{\"include\":\"#expression\"},{\"include\":\"#punctuation-semicolon\"},{\"include\":\"#string\"},{\"include\":\"#comment\"},{\"include\":\"#mdDocumentation\"},{\"include\":\"#keywords\"},{\"include\":\"#annotationAttachment\"},{\"include\":\"#regex\"}]},\"string\":{\"patterns\":[{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.ballerina\"}},\"end\":\"(\\\")|([^\\\\n\\\\\\\\])$\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.end.ballerina\"},\"2\":{\"name\":\"invalid.illegal.newline.ballerina\"}},\"name\":\"string.quoted.double.ballerina\",\"patterns\":[{\"include\":\"#string-character-escape\"}]}]},\"string-character-escape\":{\"patterns\":[{\"match\":\"\\\\\\\\(x\\\\h{2}|u\\\\h{4}|u\\\\{\\\\h+}|[012][0-7]{0,2}|3[0-6][0-7]?|37[0-7]?|[4-7][0-7]?|.|$)\",\"name\":\"constant.character.escape.ballerina\"}]},\"stringTemplate\":{\"patterns\":[{\"begin\":\"((string)|([$_[:alpha:]][$_[:alnum:]]*))?(`)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.tagged-template.ballerina\"},\"2\":{\"name\":\"support.type.primitive.ballerina\"},\"4\":{\"name\":\"punctuation.definition.string.template.begin.ballerina\"}},\"end\":\"\\\\\\\\?`\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.template.end.ballerina\"}},\"name\":\"string.template.ballerina\",\"patterns\":[{\"include\":\"#template-substitution-element\"},{\"include\":\"#string-character-escape\"}]}]},\"strings\":{\"patterns\":[{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"string.begin.ballerina\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"string.end.ballerina\"}},\"patterns\":[{\"match\":\"\\\\\\\\.\",\"name\":\"constant.character.escape.ballerina\"},{\"match\":\".\",\"name\":\"string\"}]}]},\"template-substitution-element\":{\"patterns\":[{\"begin\":\"\\\\$\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.template-expression.begin.ballerina\"}},\"contentName\":\"meta.embedded.line.ballerina\",\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.template-expression.end.ballerina\"}},\"name\":\"meta.template.expression.ballerina\",\"patterns\":[{\"include\":\"#expression\"}]}]},\"templateVariable\":{\"patterns\":[{\"begin\":\"\\\\$\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"constant.character.escape.ballerina\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"constant.character.escape.ballerina\"}},\"patterns\":[{\"include\":\"#code\"}]}]},\"ternary-expression\":{\"begin\":\"(?!\\\\?\\\\.\\\\s*\\\\D)(\\\\?)(?!\\\\?)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.operator.ternary.ballerina\"}},\"end\":\"\\\\s*\",\"endCaptures\":{\"1\":{\"name\":\"keyword.operator.ternary.ballerina\"}},\"patterns\":[{\"include\":\"#expression\"}]},\"tupleType\":{\"patterns\":[{\"begin\":\"\\\\[\",\"end\":\"(?=[];])\",\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#constrainType\"},{\"include\":\"#paranthesisedBracket\"},{\"match\":\"\\\\b([$_[:alpha:]][$_[:alnum:]]*)\\\\b\",\"name\":\"storage.type.ballerina\"}]}]},\"type\":{\"patterns\":[{\"include\":\"#comment\"},{\"include\":\"#string\"},{\"include\":\"#numbers\"},{\"include\":\"#type-primitive\"},{\"include\":\"#type-tuple\"}]},\"type-annotation\":{\"patterns\":[{\"begin\":\"(:)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.operator.type.annotation.ballerina\"}},\"end\":\"(?<![\\\\&:|])((?=$|^|[]),;=>?}]|//)|(?==[^>])|((?<=[]$)>_}[:alpha:]])\\\\s*(?=\\\\{)))(\\\\?)?\",\"name\":\"meta.type.annotation.ballerina\",\"patterns\":[{\"include\":\"#booleans\"},{\"include\":\"#stringTemplate\"},{\"include\":\"#regex\"},{\"include\":\"#self-literal\"},{\"include\":\"#xml\"},{\"include\":\"#call\"},{\"captures\":{\"1\":{\"name\":\"keyword.other.ballerina\"},\"2\":{\"name\":\"constant.language.boolean.ballerina\"},\"3\":{\"name\":\"keyword.control.ballerina\"},\"4\":{\"name\":\"storage.type.ballerina\"},\"5\":{\"name\":\"support.type.primitive.ballerina\"},\"6\":{\"name\":\"variable.other.readwrite.ballerina\"},\"8\":{\"name\":\"punctuation.accessor.ballerina\"},\"9\":{\"name\":\"entity.name.function.ballerina\"},\"10\":{\"name\":\"punctuation.definition.parameters.begin.ballerina\"},\"11\":{\"name\":\"punctuation.definition.parameters.end.ballerina\"}},\"match\":\"\\\\b(is|new|isolated|null|function|in)\\\\b|\\\\b(true|false)\\\\b|\\\\b(check|foreach|if|checkpanic)\\\\b|\\\\b(readonly|error|map)\\\\b|\\\\b(var)\\\\b|([$_[:alpha:]][$_[:alnum:]]*)((\\\\.)([$_[:alpha:]][$_[:alnum:]]*)(\\\\()(\\\\)))?\"},{\"match\":\"\\\\?\",\"name\":\"keyword.operator.optional.ballerina\"},{\"include\":\"#multiType\"},{\"include\":\"#type\"},{\"include\":\"#paranthesised\"}]}]},\"type-primitive\":{\"patterns\":[{\"match\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(string|int|boolean|float|byte|decimal|json|xml|anydata)(?![$_[:alnum:]])(?:(?=\\\\.\\\\.\\\\.)|(?!\\\\.))\",\"name\":\"support.type.primitive.ballerina\"}]},\"type-tuple\":{\"begin\":\"\\\\[\",\"beginCaptures\":{\"0\":{\"name\":\"meta.brace.square.ballerina\"}},\"end\":\"]\",\"endCaptures\":{\"0\":{\"name\":\"meta.brace.square.ballerina\"}},\"name\":\"meta.type.tuple.ballerina\",\"patterns\":[{\"include\":\"#self-literal\"},{\"include\":\"#booleans\"},{\"match\":\"\\\\.\\\\.\\\\.\",\"name\":\"keyword.operator.rest.ballerina\"},{\"captures\":{\"1\":{\"name\":\"entity.name.label.ballerina\"},\"2\":{\"name\":\"keyword.operator.optional.ballerina\"},\"3\":{\"name\":\"punctuation.separator.label.ballerina\"}},\"match\":\"(?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))([$_[:alpha:]][$_[:alnum:]]*)\\\\s*(\\\\?)?\\\\s*(:)\"},{\"include\":\"#identifiers\"},{\"include\":\"#type\"},{\"include\":\"#punctuation-comma\"}]},\"typeDefinition\":{\"patterns\":[{\"begin\":\"\\\\b(type)\\\\b\\\\s+([$_[:alpha:]][$_[:alnum:]]*)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.ballerina\"},\"2\":{\"name\":\"entity.name.type.ballerina\"}},\"end\":\";\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.terminator.statement.ballerina\"}},\"patterns\":[{\"include\":\"#functionParameters\"},{\"include\":\"#functionReturns\"},{\"include\":\"#mdDocumentation\"},{\"include\":\"#record\"},{\"include\":\"#string\"},{\"include\":\"#keywords\"},{\"include\":\"#multiType\"},{\"include\":\"#type-primitive\"},{\"match\":\"[$_[:alpha:]][$_[:alnum:]]*\",\"name\":\"variable.other.readwrite.ballerina\"},{\"include\":\"#type-annotation\"},{\"include\":\"#typeDescription\"},{\"include\":\"#decl-block\"}]}]},\"typeDescription\":{\"patterns\":[{\"begin\":\"[$_[:alpha:]][$_[:alnum:]]*\",\"end\":\"(?=;)\",\"patterns\":[{\"include\":\"#numbers\"},{\"include\":\"#decl-block\"},{\"include\":\"#type-primitive\"},{\"match\":\"[$_[:alpha:]][$_[:alnum:]]*\",\"name\":\"storage.type.ballerina\"}]}]},\"types\":{\"patterns\":[{\"match\":\"\\\\b(handle|any|future|typedesc)\\\\b\",\"name\":\"storage.type.ballerina\"},{\"match\":\"\\\\b(boolean|int|string|float|decimal|byte|json|xml|anydata)\\\\b\",\"name\":\"support.type.primitive.ballerina\"},{\"match\":\"\\\\b(map|error|never|readonly|distinct)\\\\b\",\"name\":\"storage.type.ballerina\"},{\"match\":\"\\\\b(stream)\\\\b\",\"name\":\"storage.type.ballerina\"}]},\"unicode-property-escape\":{\"patterns\":[{\"begin\":\"(\\\\\\\\[Pp])(\\\\{)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.unicode-property.regexp.ballerina\"},\"2\":{\"name\":\"punctuation.other.unicode-property.begin.regexp.ballerina\"}},\"end\":\"(})\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.other.unicode-property.end.regexp.ballerina\"}},\"name\":\"keyword.other.unicode-property.regexp.ballerina\",\"patterns\":[{\"include\":\"#regex-unicode-properties-general-category\"},{\"include\":\"#regex-unicode-property-key\"}]}]},\"unicode-values\":{\"patterns\":[{\"begin\":\"(\\\\\\\\u)(\\\\{)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.unicode-value.regexp.ballerina\"},\"2\":{\"name\":\"punctuation.other.unicode-value.begin.regexp.ballerina\"}},\"end\":\"(})\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.other.unicode-value.end.regexp.ballerina\"}},\"name\":\"keyword.other.unicode-value.ballerina\",\"patterns\":[{\"match\":\"(\\\\h{1,6})\",\"name\":\"constant.other.unicode-value.regexp.ballerina\"}]}]},\"var-expr\":{\"patterns\":[{\"begin\":\"(?=\\\\b(var))\",\"beginCaptures\":{\"0\":{\"name\":\"storage.modifier.ballerina support.type.primitive.ballerina\"}},\"end\":\"(?!\\\\b(var))((?=[;}]|^\\\\s*$|^\\\\s*(?:abstract|async|class|const|declare|enum|export|function|import|interface|let|module|namespace|return|service|type|var)\\\\b)|((?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))(?=(if)\\\\s+))|((?<!^string|[^$._[:alnum:]]string|^int|[^$._[:alnum:]]int)(?=\\\\s*$)))\",\"name\":\"meta.var.expr.ballerina\",\"patterns\":[{\"begin\":\"\\\\b(var)(?=\\\\s+|[:?\\\\[|])\",\"beginCaptures\":{\"0\":{\"name\":\"support.type.primitive.ballerina\"}},\"end\":\"(?=\\\\S)\"},{\"match\":\"\\\\|\",\"name\":\"keyword.operator.type.annotation.ballerina\"},{\"match\":\"\\\\bin\\\\b\",\"name\":\"keyword.other.ballerina\"},{\"include\":\"#comment\"},{\"include\":\"#string\"},{\"include\":\"#stringTemplate\"},{\"include\":\"#numbers\"},{\"include\":\"#multiType\"},{\"include\":\"#self-literal\"},{\"include\":\"#var-single-variable\"},{\"include\":\"#variable-initializer\"},{\"include\":\"#punctuation-comma\"},{\"include\":\"#type-annotation\"},{\"include\":\"#keywords\"},{\"include\":\"#type-tuple\"},{\"include\":\"#regex\"}]},{\"include\":\"#punctuation-comma\"},{\"begin\":\"(?=\\\\b(const(?!\\\\s+enum\\\\b)))\",\"end\":\"(?!\\\\b(const(?!\\\\s+enum\\\\b)))((?=\\\\bannotation\\\\b|[;}]|^\\\\s*$|^\\\\s*(?:abstract|async|class|const|declare|enum|export|function|import|interface|let|module|namespace|return|service|type|var)\\\\b)|((?<!^string|[^$._[:alnum:]]string|^int|[^$._[:alnum:]]int)(?=\\\\s*$)))\",\"name\":\"meta.var.expr.ballerina\",\"patterns\":[{\"begin\":\"\\\\b(const(?!\\\\s+enum\\\\b))\\\\s+\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.other.ballerina\"}},\"end\":\"(?=\\\\S)\"},{\"include\":\"#comment\"},{\"include\":\"#string\"},{\"include\":\"#stringTemplate\"},{\"include\":\"#var-single-const\"},{\"include\":\"#variable-initializer\"},{\"include\":\"#punctuation-comma\"},{\"include\":\"#type-annotation\"}]},{\"include\":\"#punctuation-comma\"},{\"begin\":\"(string|int|boolean|float|byte|decimal|json|xml|anydata)(?=\\\\s+|[:?\\\\[|])\",\"beginCaptures\":{\"0\":{\"name\":\"support.type.primitive.ballerina\"}},\"end\":\"(?!\\\\b(var))((?=[;}]|^\\\\s*$|^\\\\s*(?:abstract|async|class|const|declare|enum|export|function|import|interface|let|module|namespace|return|service|type|var)\\\\b)|((?<!^string|[^$._[:alnum:]]string|^int|[^$._[:alnum:]]int)(?=\\\\s*$)))\",\"name\":\"meta.var.expr.ballerina\",\"patterns\":[{\"include\":\"#xml\"},{\"begin\":\"(string|int|boolean|float|byte|decimal|json|xml|anydata)(?=\\\\s+|[:?\\\\[|])\",\"beginCaptures\":{\"0\":{\"name\":\"support.type.primitive.ballerina\"}},\"end\":\"(?=\\\\S)\"},{\"match\":\"\\\\|\",\"name\":\"keyword.operator.type.annotation.ballerina\"},{\"include\":\"#string\"},{\"include\":\"#stringTemplate\"},{\"include\":\"#numbers\"},{\"include\":\"#multiType\"},{\"include\":\"#var-single-variable\"},{\"include\":\"#variable-initializer\"},{\"include\":\"#punctuation-comma\"},{\"include\":\"#type-annotation\"},{\"include\":\"#keywords\"},{\"include\":\"#type-tuple\"},{\"include\":\"#regex\"}]},{\"include\":\"#punctuation-comma\"}]},\"var-single-const\":{\"patterns\":[{\"name\":\"meta.var-single-variable.expr.ballerina\"},{\"begin\":\"\\\\b(var)\\\\s*\",\"beginCaptures\":{\"0\":{\"name\":\"support.type.primitive.ballerina\"}},\"end\":\"(?=\\\\S)\"},{\"include\":\"#types\"},{\"begin\":\"([$_[:alpha:]][$_[:alnum:]]*)\",\"beginCaptures\":{\"1\":{\"name\":\"meta.definition.variable.ballerina variable.other.constant.ballerina\"}},\"end\":\"(?=$|^|[,;=}]|((?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))\\\\s+))\"}]},\"var-single-variable\":{\"patterns\":[{\"begin\":\"((string|int|boolean|float|byte|decimal|json|xml|anydata)|\\\\b(readonly|error|map)\\\\b|([$_[:alpha:]][$_[:alnum:]]*))(?=\\\\s+|[;>|])\",\"beginCaptures\":{\"2\":{\"name\":\"support.type.primitive.ballerina\"},\"3\":{\"name\":\"storage.type.ballerina\"},\"4\":{\"name\":\"meta.definition.variable.ballerina variable.other.readwrite.ballerina\"}},\"end\":\"(?=$|^|[,;=}])\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.terminator.statement.ballerina\"}},\"name\":\"meta.var-single-variable.expr.ballerina\",\"patterns\":[{\"include\":\"#call\"},{\"include\":\"#self-literal\"},{\"include\":\"#if-statement\"},{\"include\":\"#string\"},{\"include\":\"#numbers\"},{\"include\":\"#keywords\"}]},{\"begin\":\"([$_[:alpha:]][$_[:alnum:]]*)\\\\s+(!)?\",\"beginCaptures\":{\"1\":{\"name\":\"meta.definition.variable.ballerina variable.other.readwrite.ballerina\"},\"2\":{\"name\":\"keyword.operator.definiteassignment.ballerina\"}},\"end\":\"(?=$|^|[,;=}]|((?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))\\\\s+))\",\"name\":\"meta.var-single-variable.expr.ballerina\"}]},\"variable-initializer\":{\"patterns\":[{\"begin\":\"(?<![!=])(=)(?![=>])(?=\\\\s*\\\\S)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.operator.assignment.ballerina\"}},\"end\":\"(?=$|[]),;}])\",\"patterns\":[{\"match\":\"(')([$_[:alpha:]][$_[:alnum:]]*)\",\"name\":\"variable.other.property.ballerina\"},{\"include\":\"#xml\"},{\"include\":\"#function-defn\"},{\"include\":\"#expression\"},{\"include\":\"#punctuation-accessor\"},{\"include\":\"#regex\"}]},{\"begin\":\"(?<![!=])(=)(?![=>])\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.operator.assignment.ballerina\"}},\"end\":\"(?=[]),;}]|((?<![$_[:alnum:]])(?:(?<=\\\\.\\\\.\\\\.)|(?<!\\\\.))\\\\s+))|(?=^\\\\s*$)|(?<=\\\\S)(?<!=)(?=\\\\s*$)\",\"patterns\":[{\"include\":\"#expression\"}]}]},\"variableDef\":{\"patterns\":[{\"begin\":\"(?!\\\\+)[$_[:alpha:]][$_[:alnum:]]*[\\\\t ]|(?=\\\\()\",\"beginCaptures\":{\"0\":{\"name\":\"storage.type.ballerina\"}},\"end\":\"[$_[:alpha:]][$_[:alnum:]]*|(?=,)|(?=;)|\\\\.\\\\.\\\\.\",\"patterns\":[{\"include\":\"#tupleType\"},{\"include\":\"#constrainType\"},{\"include\":\"#comment\"}]}]},\"variableDefInline\":{\"patterns\":[{\"begin\":\"(?=record)|(?=object)\",\"end\":\"(?=;)\",\"patterns\":[{\"include\":\"#record\"},{\"include\":\"#objectDec\"}]}]},\"workerBody\":{\"patterns\":[{\"begin\":\"\\\\{\",\"end\":\"(?=})\",\"patterns\":[{\"include\":\"#code\"}]}]},\"workerDef\":{\"patterns\":[{\"begin\":\"\\\\bworker\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.ballerina\"}},\"end\":\"}\",\"patterns\":[{\"include\":\"#functionReturns\"},{\"include\":\"#workerBody\"}]}]},\"xml\":{\"patterns\":[{\"begin\":\"\\\\b(xml)(\\\\s*)(`)\",\"beginCaptures\":{\"1\":{\"name\":\"support.type.primitive.ballerina\"},\"3\":{\"name\":\"punctuation.definition.string.template.begin.ballerina\"}},\"end\":\"`\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.template.end.ballerina\"}},\"name\":\"string.template.ballerina\",\"patterns\":[{\"include\":\"#xmlTag\"},{\"include\":\"#xmlComment\"},{\"include\":\"#templateVariable\"},{\"match\":\".\",\"name\":\"string\"}]}]},\"xmlComment\":{\"patterns\":[{\"begin\":\"<!--\",\"beginCaptures\":{\"0\":{\"name\":\"comment.block.xml.ballerina\"}},\"end\":\"-->\",\"endCaptures\":{\"0\":{\"name\":\"comment.block.xml.ballerina\"}},\"name\":\"comment.block.xml.ballerina\"}]},\"xmlDoubleQuotedString\":{\"patterns\":[{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"string.begin.ballerina\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"string.end.ballerina\"}},\"patterns\":[{\"match\":\"\\\\\\\\.\",\"name\":\"constant.character.escape.ballerina\"},{\"match\":\".\",\"name\":\"string\"}]}]},\"xmlSingleQuotedString\":{\"patterns\":[{\"begin\":\"'\",\"beginCaptures\":{\"0\":{\"name\":\"string.begin.ballerina\"}},\"end\":\"'\",\"endCaptures\":{\"0\":{\"name\":\"string.end.ballerina\"}},\"patterns\":[{\"match\":\"\\\\\\\\.\",\"name\":\"constant.character.escape.ballerina\"},{\"match\":\".\",\"name\":\"string\"}]}]},\"xmlTag\":{\"patterns\":[{\"begin\":\"(</?\\\\??)\\\\s*([-0-9A-Z_a-z]+)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.begin.xml.ballerina\"},\"2\":{\"name\":\"entity.name.tag.xml.ballerina\"}},\"end\":\"\\\\??/?>\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.tag.end.xml.ballerina\"}},\"patterns\":[{\"include\":\"#xmlSingleQuotedString\"},{\"include\":\"#xmlDoubleQuotedString\"},{\"match\":\"xmlns\",\"name\":\"keyword.other.ballerina\"},{\"match\":\"([-0-9A-Za-z]+)\",\"name\":\"entity.other.attribute-name.xml.ballerina\"}]}]}},\"scopeName\":\"source.ballerina\"}"))];
2
+ export { ballerina_default as default };
@@ -0,0 +1,2 @@
1
+ var bat_default = [Object.freeze(JSON.parse("{\"displayName\":\"Batch File\",\"injections\":{\"L:meta.block.repeat.batchfile\":{\"patterns\":[{\"include\":\"#repeatParameter\"}]}},\"name\":\"bat\",\"patterns\":[{\"include\":\"#commands\"},{\"include\":\"#comments\"},{\"include\":\"#constants\"},{\"include\":\"#controls\"},{\"include\":\"#escaped_characters\"},{\"include\":\"#labels\"},{\"include\":\"#numbers\"},{\"include\":\"#operators\"},{\"include\":\"#parens\"},{\"include\":\"#strings\"},{\"include\":\"#variables\"}],\"repository\":{\"command_set\":{\"patterns\":[{\"begin\":\"(?<=^|[@\\\\s])(?i:SET)(?=$|\\\\s)\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.command.batchfile\"}},\"end\":\"(?=$\\\\n|[\\\\&)<>|])\",\"patterns\":[{\"include\":\"#command_set_inside\"}]}]},\"command_set_group\":{\"patterns\":[{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.section.group.begin.batchfile\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.section.group.end.batchfile\"}},\"patterns\":[{\"include\":\"#command_set_inside_arithmetic\"}]}]},\"command_set_inside\":{\"patterns\":[{\"include\":\"#escaped_characters\"},{\"include\":\"#variables\"},{\"include\":\"#numbers\"},{\"include\":\"#parens\"},{\"include\":\"#command_set_strings\"},{\"include\":\"#strings\"},{\"begin\":\"([^ ][^=]*)(=)\",\"beginCaptures\":{\"1\":{\"name\":\"variable.other.readwrite.batchfile\"},\"2\":{\"name\":\"keyword.operator.assignment.batchfile\"}},\"end\":\"(?=$\\\\n|[\\\\&)<>|])\",\"patterns\":[{\"include\":\"#escaped_characters\"},{\"include\":\"#variables\"},{\"include\":\"#numbers\"},{\"include\":\"#parens\"},{\"include\":\"#strings\"}]},{\"begin\":\"\\\\s+/[Aa]\\\\s+\",\"end\":\"(?=$\\\\n|[\\\\&)<>|])\",\"name\":\"meta.expression.set.batchfile\",\"patterns\":[{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.batchfile\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.batchfile\"}},\"name\":\"string.quoted.double.batchfile\",\"patterns\":[{\"include\":\"#command_set_inside_arithmetic\"},{\"include\":\"#command_set_group\"},{\"include\":\"#variables\"}]},{\"include\":\"#command_set_inside_arithmetic\"},{\"include\":\"#command_set_group\"}]},{\"begin\":\"\\\\s+/[Pp]\\\\s+\",\"end\":\"(?=$\\\\n|[\\\\&)<>|])\",\"patterns\":[{\"include\":\"#command_set_strings\"},{\"begin\":\"([^ ][^=]*)(=)\",\"beginCaptures\":{\"1\":{\"name\":\"variable.other.readwrite.batchfile\"},\"2\":{\"name\":\"keyword.operator.assignment.batchfile\"}},\"end\":\"(?=$\\\\n|[\\\\&)<>|])\",\"name\":\"meta.prompt.set.batchfile\",\"patterns\":[{\"include\":\"#strings\"}]}]}]},\"command_set_inside_arithmetic\":{\"patterns\":[{\"include\":\"#command_set_operators\"},{\"include\":\"#numbers\"},{\"match\":\",\",\"name\":\"punctuation.separator.batchfile\"}]},\"command_set_operators\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"variable.other.readwrite.batchfile\"},\"2\":{\"name\":\"keyword.operator.assignment.augmented.batchfile\"}},\"match\":\"([^ ]*)((?:[-*+/]|%%|[\\\\&^|]|<<|>>)=)\"},{\"match\":\"[-*+/]|%%|[\\\\&^|]|<<|>>|~\",\"name\":\"keyword.operator.arithmetic.batchfile\"},{\"match\":\"!\",\"name\":\"keyword.operator.logical.batchfile\"},{\"captures\":{\"1\":{\"name\":\"variable.other.readwrite.batchfile\"},\"2\":{\"name\":\"keyword.operator.assignment.batchfile\"}},\"match\":\"([^ =]*)(=)\"}]},\"command_set_strings\":{\"patterns\":[{\"begin\":\"(\\\")\\\\s*([^ ][^=]*)(=)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.begin.batchfile\"},\"2\":{\"name\":\"variable.other.readwrite.batchfile\"},\"3\":{\"name\":\"keyword.operator.assignment.batchfile\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.batchfile\"}},\"name\":\"string.quoted.double.batchfile\",\"patterns\":[{\"include\":\"#variables\"},{\"include\":\"#numbers\"},{\"include\":\"#escaped_characters\"}]}]},\"commands\":{\"patterns\":[{\"match\":\"(?<=^|[@\\\\s])(?i:adprep|append|arp|assoc|at|atmadm|attrib|auditpol|autochk|autoconv|autofmt|bcdboot|bcdedit|bdehdcfg|bitsadmin|bootcfg|brea|cacls|cd|certreq|certutil|change|chcp|chdir|chglogon|chgport|chgusr|chkdsk|chkntfs|choice|cipher|clip|cls|clscluadmin|cluster|cmd|cmdkey|cmstp|color|comp|compact|convert|copy|cprofile|cscript|csvde|date|dcdiag|dcgpofix|dcpromo|defra|del|dfscmd|dfsdiag|dfsrmig|diantz|dir|dirquota|diskcomp|diskcopy|diskpart|diskperf|diskraid|diskshadow|dispdiag|doin|dnscmd|doskey|driverquery|dsacls|dsadd|dsamain|dsdbutil|dsget|dsmgmt|dsmod|dsmove|dsquery|dsrm|edit|endlocal|eraseesentutl|eventcreate|eventquery|eventtriggers|evntcmd|expand|extract|fc|filescrn|find|findstr|finger|flattemp|fonde|forfiles|format|freedisk|fsutil|ftp|ftype|fveupdate|getmac|gettype|gpfixup|gpresult|gpupdate|graftabl|hashgen|hep|helpctr|hostname|icacls|iisreset|inuse|ipconfig|ipxroute|irftp|ismserv|jetpack|klist|ksetup|ktmutil|ktpass|label|ldifd|ldp|lodctr|logman|logoff|lpq|lpr|macfile|makecab|manage-bde|mapadmin|md|mkdir|mklink|mmc|mode|more|mount|mountvol|move|mqbup|mqsvc|mqtgsvc|msdt|msg|msiexec|msinfo32|mstsc|nbtstat|net computer|net group|net localgroup|net print|net session|net share|net start|net stop|net user??|net view|net|netcfg|netdiag|netdom|netsh|netstat|nfsadmin|nfsshare|nfsstat|nlb|nlbmgr|nltest|nslookup|ntackup|ntcmdprompt|ntdsutil|ntfrsutl|openfiles|pagefileconfig|path|pathping|pause|pbadmin|pentnt|perfmon|ping|pnpunatten|pnputil|popd|powercfg|powershell|powershell_ise|print|prncnfg|prndrvr|prnjobs|prnmngr|prnport|prnqctl|prompt|pubprn|pushd|pushprinterconnections|pwlauncher|qappsrv|qprocess|query|quser|qwinsta|rasdial|rcp|rd|rdpsign|regentc|recover|redircmp|redirusr|reg|regini|regsvr32|relog|ren|rename|rendom|repadmin|repair-bde|replace|reset session|rxec|risetup|rmdir|robocopy|route|rpcinfo|rpcping|rsh|runas|rundll32|rwinsta|sc|schtasks|scp|scwcmd|secedit|serverceipoptin|servrmanagercmd|serverweroptin|setspn|setx|sfc|sftp|shadow|shift|showmount|shutdown|sort|ssh|ssh-add|ssh-agent|ssh-keygen|ssh-keyscan|start|storrept|subst|sxstrace|ysocmgr|systeminfo|takeown|tapicfg|taskkill|tasklist|tcmsetup|telnet|tftp|time|timeout|title|tlntadmn|tpmvscmgr|tacerpt|tracert|tree|tscon|tsdiscon|tsecimp|tskill|tsprof|type|typeperf|tzutil|uddiconfig|umount|unlodctr|ver|verifier|verif|vol|vssadmin|w32tm|waitfor|wbadmin|wdsutil|wecutil|wevtutil|where|whoami|winnt|winnt32|winpop|winrm|winrs|winsat|wlbs|wmic|wscript|wsl|xcopy)(?=$|\\\\s)\",\"name\":\"keyword.command.batchfile\"},{\"begin\":\"(?i)(?<=^|[@\\\\s])(echo)(?:(?=$|[.:])|\\\\s+(?:(o(?:n|ff))(?=\\\\s*$))?)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.command.batchfile\"},\"2\":{\"name\":\"keyword.other.special-method.batchfile\"}},\"end\":\"(?=$\\\\n|[\\\\&)<>|])\",\"patterns\":[{\"include\":\"#escaped_characters\"},{\"include\":\"#variables\"},{\"include\":\"#numbers\"},{\"include\":\"#strings\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.command.batchfile\"},\"2\":{\"name\":\"keyword.other.special-method.batchfile\"}},\"match\":\"(?i)(?<=^|[@\\\\s])(setlocal)(?:\\\\s*$|\\\\s+((?:En|Dis)able(?:Extensions|DelayedExpansion))(?=\\\\s*$))\"},{\"include\":\"#command_set\"}]},\"comments\":{\"patterns\":[{\"begin\":\"(?:^|(&))\\\\s*(?=(:[ +,:;=]))\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.operator.conditional.batchfile\"}},\"end\":\"\\\\n\",\"patterns\":[{\"begin\":\"(:[ +,:;=])\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.comment.batchfile\"}},\"end\":\"(?=\\\\n)\",\"name\":\"comment.line.colon.batchfile\"}]},{\"begin\":\"(?<=^|[@\\\\s])(?i)(REM)(\\\\.)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.command.rem.batchfile\"},\"2\":{\"name\":\"punctuation.separator.batchfile\"}},\"end\":\"(?=$\\\\n|[\\\\&)<>|])\",\"name\":\"comment.line.rem.batchfile\"},{\"begin\":\"(?<=^|[@\\\\s])(?i:rem)\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.command.rem.batchfile\"}},\"end\":\"\\\\n\",\"name\":\"comment.line.rem.batchfile\",\"patterns\":[{\"match\":\"[<>|]\",\"name\":\"invalid.illegal.unexpected-character.batchfile\"}]}]},\"constants\":{\"patterns\":[{\"match\":\"\\\\b(?i:NUL)\\\\b\",\"name\":\"constant.language.batchfile\"}]},\"controls\":{\"patterns\":[{\"match\":\"(?i)(?<=^|\\\\s)(?:call|exit(?=$|\\\\s)|goto(?=$|[:\\\\s]))\",\"name\":\"keyword.control.statement.batchfile\"},{\"captures\":{\"1\":{\"name\":\"keyword.control.conditional.batchfile\"},\"2\":{\"name\":\"keyword.operator.logical.batchfile\"},\"3\":{\"name\":\"keyword.other.special-method.batchfile\"}},\"match\":\"(?<=^|\\\\s)(?i)(if)\\\\s+(?:(not)\\\\s+)?(exist|defined|errorlevel|cmdextversion)(?=\\\\s)\"},{\"match\":\"(?<=^|\\\\s)(?i)(?:if|else)(?=$|\\\\s)\",\"name\":\"keyword.control.conditional.batchfile\"},{\"begin\":\"(?<=^|[\\\\&(^\\\\s])(?i)for(?=\\\\s)\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.control.repeat.batchfile\"}},\"end\":\"\\\\n\",\"name\":\"meta.block.repeat.batchfile\",\"patterns\":[{\"begin\":\"(?<=[\\\\^\\\\s])(?i)in(?=\\\\s)\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.control.repeat.in.batchfile\"}},\"end\":\"(?<=[)^\\\\s])(?i)do(?=\\\\s)|\\\\n\",\"endCaptures\":{\"0\":{\"name\":\"keyword.control.repeat.do.batchfile\"}},\"patterns\":[{\"include\":\"$self\"}]},{\"include\":\"$self\"}]}]},\"escaped_characters\":{\"patterns\":[{\"match\":\"%%|\\\\^\\\\^!|\\\\^(?=.)|\\\\^\\\\n\",\"name\":\"constant.character.escape.batchfile\"}]},\"labels\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.separator.batchfile\"},\"2\":{\"name\":\"keyword.other.special-method.batchfile\"}},\"match\":\"(?i)(?:^\\\\s*|(?<=call|goto)\\\\s*)(:)([^+,:;=\\\\s]\\\\S*)\"}]},\"numbers\":{\"patterns\":[{\"match\":\"(?<=^|[=\\\\s])(0[Xx]\\\\h*|[-+]?\\\\d+)(?=$|[<>\\\\s])\",\"name\":\"constant.numeric.batchfile\"}]},\"operators\":{\"patterns\":[{\"match\":\"@(?=\\\\S)\",\"name\":\"keyword.operator.at.batchfile\"},{\"match\":\"(?<=\\\\s)(?i:EQU|NEQ|LSS|LEQ|GTR|GEQ)(?=\\\\s)|==\",\"name\":\"keyword.operator.comparison.batchfile\"},{\"match\":\"(?<=\\\\s)(?i)(NOT)(?=\\\\s)\",\"name\":\"keyword.operator.logical.batchfile\"},{\"match\":\"(?<!\\\\^)&&?|\\\\|\\\\|\",\"name\":\"keyword.operator.conditional.batchfile\"},{\"match\":\"(?<!\\\\^)\\\\|\",\"name\":\"keyword.operator.pipe.batchfile\"},{\"match\":\"<&?|>[\\\\&>]?\",\"name\":\"keyword.operator.redirection.batchfile\"}]},\"parens\":{\"patterns\":[{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.section.group.begin.batchfile\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.section.group.end.batchfile\"}},\"name\":\"meta.group.batchfile\",\"patterns\":[{\"match\":\"[,;]\",\"name\":\"punctuation.separator.batchfile\"},{\"include\":\"$self\"}]}]},\"repeatParameter\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.definition.variable.batchfile\"}},\"match\":\"(%%)(?i:~[adfnpstxz]*(?:\\\\$PATH:)?)?[A-Za-z]\",\"name\":\"variable.parameter.repeat.batchfile\"}]},\"strings\":{\"patterns\":[{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.batchfile\"}},\"end\":\"(\\\")|(\\\\n)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.end.batchfile\"},\"2\":{\"name\":\"invalid.illegal.newline.batchfile\"}},\"name\":\"string.quoted.double.batchfile\",\"patterns\":[{\"match\":\"%%\",\"name\":\"constant.character.escape.batchfile\"},{\"include\":\"#variables\"}]}]},\"variable\":{\"patterns\":[{\"begin\":\"%(?=[^%]+%)\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.variable.begin.batchfile\"}},\"end\":\"(%)|\\\\n\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.variable.end.batchfile\"}},\"name\":\"variable.other.readwrite.batchfile\",\"patterns\":[{\"begin\":\":~\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.separator.batchfile\"}},\"end\":\"(?=[\\\\n%])\",\"name\":\"meta.variable.substring.batchfile\",\"patterns\":[{\"include\":\"#variable_substring\"}]},{\"begin\":\":\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.separator.batchfile\"}},\"end\":\"(?=[\\\\n%])\",\"name\":\"meta.variable.substitution.batchfile\",\"patterns\":[{\"include\":\"#variable_replace\"},{\"begin\":\"=\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.separator.batchfile\"}},\"end\":\"(?=[\\\\n%])\",\"patterns\":[{\"include\":\"#variable_delayed_expansion\"},{\"match\":\"[^%]+\",\"name\":\"string.unquoted.batchfile\"}]}]}]}]},\"variable_delayed_expansion\":{\"patterns\":[{\"begin\":\"!(?=[^!]+!)\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.variable.begin.batchfile\"}},\"end\":\"(!)|\\\\n\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.variable.end.batchfile\"}},\"name\":\"variable.other.readwrite.batchfile\",\"patterns\":[{\"begin\":\":~\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.separator.batchfile\"}},\"end\":\"(?=[\\\\n!])\",\"name\":\"meta.variable.substring.batchfile\",\"patterns\":[{\"include\":\"#variable_substring\"}]},{\"begin\":\":\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.separator.batchfile\"}},\"end\":\"(?=[\\\\n!])\",\"name\":\"meta.variable.substitution.batchfile\",\"patterns\":[{\"include\":\"#escaped_characters\"},{\"include\":\"#variable_replace\"},{\"include\":\"#variable\"},{\"begin\":\"=\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.separator.batchfile\"}},\"end\":\"(?=[\\\\n!])\",\"patterns\":[{\"include\":\"#variable\"},{\"match\":\"[^!]+\",\"name\":\"string.unquoted.batchfile\"}]}]}]}]},\"variable_replace\":{\"patterns\":[{\"match\":\"[^\\\\n!%=]+\",\"name\":\"string.unquoted.batchfile\"}]},\"variable_substring\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.numeric.batchfile\"},\"2\":{\"name\":\"punctuation.separator.batchfile\"},\"3\":{\"name\":\"constant.numeric.batchfile\"}},\"match\":\"([-+]?\\\\d+)(?:(,)([-+]?\\\\d+))?\"}]},\"variables\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.definition.variable.batchfile\"}},\"match\":\"(%)(?:(?i:~[adfnpstxz]*(?:\\\\$PATH:)?)?\\\\d|\\\\*)\",\"name\":\"variable.parameter.batchfile\"},{\"include\":\"#variable\"},{\"include\":\"#variable_delayed_expansion\"}]}},\"scopeName\":\"source.batchfile\",\"aliases\":[\"batch\"]}"))];
2
+ export { bat_default as default };
@@ -0,0 +1,2 @@
1
+ var beancount_default = [Object.freeze(JSON.parse("{\"displayName\":\"Beancount\",\"fileTypes\":[\"beancount\"],\"name\":\"beancount\",\"patterns\":[{\"match\":\";.*\",\"name\":\"comment.line.beancount\"},{\"begin\":\"^\\\\s*(p(?:op|ush)tag)\\\\s+(#)([\\\\--9A-Z_a-z]+)\",\"beginCaptures\":{\"1\":{\"name\":\"support.function.beancount\"},\"2\":{\"name\":\"keyword.operator.tag.beancount\"},\"3\":{\"name\":\"entity.name.tag.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.tag.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#illegal\"}]},{\"begin\":\"^\\\\s*(include)\\\\s+(\\\".*\\\")\",\"beginCaptures\":{\"1\":{\"name\":\"support.function.beancount\"},\"2\":{\"name\":\"string.quoted.double.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.include.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#illegal\"}]},{\"begin\":\"^\\\\s*(option)\\\\s+(\\\".*\\\")\\\\s+(\\\".*\\\")\",\"beginCaptures\":{\"1\":{\"name\":\"support.function.beancount\"},\"2\":{\"name\":\"support.variable.beancount\"},\"3\":{\"name\":\"string.quoted.double.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.option.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#illegal\"}]},{\"begin\":\"^\\\\s*(plugin)\\\\s*(\\\"(.*?)\\\")\\\\s*(\\\".*?\\\")?\",\"beginCaptures\":{\"1\":{\"name\":\"support.function.beancount\"},\"2\":{\"name\":\"string.quoted.double.beancount\"},\"3\":{\"name\":\"entity.name.function.beancount\"},\"4\":{\"name\":\"string.quoted.double.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"keyword.operator.directive.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#illegal\"}]},{\"begin\":\"([0-9]{4})([-/|])([0-9]{2})([-/|])([0-9]{2})\\\\s+(open|close|pad)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"constant.numeric.date.year.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"},\"3\":{\"name\":\"constant.numeric.date.month.beancount\"},\"4\":{\"name\":\"punctuation.separator.beancount\"},\"5\":{\"name\":\"constant.numeric.date.day.beancount\"},\"6\":{\"name\":\"support.function.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.dated.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#meta\"},{\"include\":\"#account\"},{\"include\":\"#commodity\"},{\"match\":\",\",\"name\":\"punctuation.separator.beancount\"},{\"include\":\"#illegal\"}]},{\"begin\":\"([0-9]{4})([-/|])([0-9]{2})([-/|])([0-9]{2})\\\\s+(custom)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"constant.numeric.date.year.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"},\"3\":{\"name\":\"constant.numeric.date.month.beancount\"},\"4\":{\"name\":\"punctuation.separator.beancount\"},\"5\":{\"name\":\"constant.numeric.date.day.beancount\"},\"6\":{\"name\":\"support.function.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.dated.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#meta\"},{\"include\":\"#string\"},{\"include\":\"#bool\"},{\"include\":\"#amount\"},{\"include\":\"#number\"},{\"include\":\"#date\"},{\"include\":\"#account\"},{\"include\":\"#illegal\"}]},{\"begin\":\"([0-9]{4})([-/|])([0-9]{2})([-/|])([0-9]{2})\\\\s(event)\",\"beginCaptures\":{\"1\":{\"name\":\"constant.numeric.date.year.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"},\"3\":{\"name\":\"constant.numeric.date.month.beancount\"},\"4\":{\"name\":\"punctuation.separator.beancount\"},\"5\":{\"name\":\"constant.numeric.date.day.beancount\"},\"6\":{\"name\":\"support.function.directive.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.dated.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#meta\"},{\"include\":\"#string\"},{\"include\":\"#illegal\"}]},{\"begin\":\"([0-9]{4})([-/|])([0-9]{2})([-/|])([0-9]{2})\\\\s(commodity)\",\"beginCaptures\":{\"1\":{\"name\":\"constant.numeric.date.year.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"},\"3\":{\"name\":\"constant.numeric.date.month.beancount\"},\"4\":{\"name\":\"punctuation.separator.beancount\"},\"5\":{\"name\":\"constant.numeric.date.day.beancount\"},\"6\":{\"name\":\"support.function.directive.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.dated.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#meta\"},{\"include\":\"#commodity\"},{\"include\":\"#illegal\"}]},{\"begin\":\"([0-9]{4})([-/|])([0-9]{2})([-/|])([0-9]{2})\\\\s(note|document)\",\"beginCaptures\":{\"1\":{\"name\":\"constant.numeric.date.year.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"},\"3\":{\"name\":\"constant.numeric.date.month.beancount\"},\"4\":{\"name\":\"punctuation.separator.beancount\"},\"5\":{\"name\":\"constant.numeric.date.day.beancount\"},\"6\":{\"name\":\"support.function.directive.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.dated.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#meta\"},{\"include\":\"#account\"},{\"include\":\"#string\"},{\"include\":\"#illegal\"}]},{\"begin\":\"([0-9]{4})([-/|])([0-9]{2})([-/|])([0-9]{2})\\\\s(price)\",\"beginCaptures\":{\"1\":{\"name\":\"constant.numeric.date.year.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"},\"3\":{\"name\":\"constant.numeric.date.month.beancount\"},\"4\":{\"name\":\"punctuation.separator.beancount\"},\"5\":{\"name\":\"constant.numeric.date.day.beancount\"},\"6\":{\"name\":\"support.function.directive.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.dated.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#meta\"},{\"include\":\"#commodity\"},{\"include\":\"#amount\"},{\"include\":\"#illegal\"}]},{\"begin\":\"([0-9]{4})([-/|])([0-9]{2})([-/|])([0-9]{2})\\\\s(balance)\",\"beginCaptures\":{\"1\":{\"name\":\"constant.numeric.date.year.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"},\"3\":{\"name\":\"constant.numeric.date.month.beancount\"},\"4\":{\"name\":\"punctuation.separator.beancount\"},\"5\":{\"name\":\"constant.numeric.date.day.beancount\"},\"6\":{\"name\":\"support.function.directive.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.dated.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#meta\"},{\"include\":\"#account\"},{\"include\":\"#amount\"},{\"include\":\"#illegal\"}]},{\"begin\":\"([0-9]{4})([-/|])([0-9]{2})([-/|])([0-9]{2})\\\\s*(txn|[!#%\\\\&*?CMPR-U])\\\\s*(\\\".*?\\\")?\\\\s*(\\\".*?\\\")?\",\"beginCaptures\":{\"1\":{\"name\":\"constant.numeric.date.year.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"},\"3\":{\"name\":\"constant.numeric.date.month.beancount\"},\"4\":{\"name\":\"punctuation.separator.beancount\"},\"5\":{\"name\":\"constant.numeric.date.day.beancount\"},\"6\":{\"name\":\"support.function.directive.beancount\",\"patterns\":[{\"match\":\"txn|\\\\*\",\"name\":\"support.function.directive.txn.completed.beancount\"},{\"match\":\"!\",\"name\":\"support.function.directive.txn.incomplete.beancount\"},{\"match\":\"P\",\"name\":\"support.function.directive.txn.padding.beancount\"}]},\"7\":{\"name\":\"string.quoted.tiers.beancount\"},\"8\":{\"name\":\"string.quoted.narration.beancount\"}},\"end\":\"(?=^(\\\\s*$|\\\\S))\",\"name\":\"meta.directive.transaction.beancount\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#posting\"},{\"include\":\"#meta\"},{\"include\":\"#tag\"},{\"include\":\"#link\"},{\"include\":\"#illegal\"}]}],\"repository\":{\"account\":{\"begin\":\"([A-Z][a-z]+)(:)\",\"beginCaptures\":{\"1\":{\"name\":\"variable.language.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"}},\"end\":\"\\\\s\",\"name\":\"meta.account.beancount\",\"patterns\":[{\"begin\":\"(\\\\S+)(:?)\",\"beginCaptures\":{\"1\":{\"name\":\"variable.other.account.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"}},\"end\":\"(:?)|(\\\\s)\",\"patterns\":[{\"include\":\"$self\"},{\"include\":\"#illegal\"}]}]},\"amount\":{\"captures\":{\"1\":{\"name\":\"keyword.operator.modifier.beancount\"},\"2\":{\"name\":\"constant.numeric.currency.beancount\"},\"3\":{\"name\":\"entity.name.type.commodity.beancount\"}},\"match\":\"([-+|]?)(\\\\d+(?:,\\\\d{3})*(?:\\\\.\\\\d*)?)\\\\s*([A-Z][-'.0-9A-Z_]{0,22}[0-9A-Z])\",\"name\":\"meta.amount.beancount\"},\"bool\":{\"captures\":{\"0\":{\"name\":\"constant.language.bool.beancount\"},\"2\":{\"name\":\"constant.numeric.currency.beancount\"},\"3\":{\"name\":\"entity.name.type.commodity.beancount\"}},\"match\":\"TRUE|FALSE\"},\"comments\":{\"captures\":{\"1\":{\"name\":\"comment.line.beancount\"}},\"match\":\"(;.*)$\"},\"commodity\":{\"match\":\"([A-Z][-'.0-9A-Z_]{0,22}[0-9A-Z])\",\"name\":\"entity.name.type.commodity.beancount\"},\"cost\":{\"begin\":\"\\\\{\\\\{?\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.operator.assignment.beancount\"}},\"end\":\"}}?\",\"endCaptures\":{\"0\":{\"name\":\"keyword.operator.assignment.beancount\"}},\"name\":\"meta.cost.beancount\",\"patterns\":[{\"include\":\"#amount\"},{\"include\":\"#date\"},{\"match\":\",\",\"name\":\"punctuation.separator.beancount\"},{\"include\":\"#illegal\"}]},\"date\":{\"captures\":{\"1\":{\"name\":\"constant.numeric.date.year.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"},\"3\":{\"name\":\"constant.numeric.date.month.beancount\"},\"4\":{\"name\":\"punctuation.separator.beancount\"},\"5\":{\"name\":\"constant.numeric.date.day.beancount\"}},\"match\":\"([0-9]{4})([-/|])([0-9]{2})([-/|])([0-9]{2})\",\"name\":\"meta.date.beancount\"},\"flag\":{\"match\":\"(?<=\\\\s)([!#%\\\\&*?CMPR-U])(?=\\\\s+)\",\"name\":\"keyword.other.beancount\"},\"illegal\":{\"match\":\"\\\\S\",\"name\":\"invalid.illegal.unrecognized.beancount\"},\"link\":{\"captures\":{\"1\":{\"name\":\"keyword.operator.link.beancount\"},\"2\":{\"name\":\"markup.underline.link.beancount\"}},\"match\":\"(\\\\^)([\\\\--9A-Z_a-z]+)\"},\"meta\":{\"begin\":\"^\\\\s*([a-z][-0-9A-Z_a-z]+)(:)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.operator.directive.beancount\"},\"2\":{\"name\":\"punctuation.separator.beancount\"}},\"end\":\"\\\\n\",\"name\":\"meta.meta.beancount\",\"patterns\":[{\"include\":\"#string\"},{\"include\":\"#account\"},{\"include\":\"#bool\"},{\"include\":\"#commodity\"},{\"include\":\"#date\"},{\"include\":\"#tag\"},{\"include\":\"#amount\"},{\"include\":\"#number\"},{\"include\":\"#comments\"},{\"include\":\"#illegal\"}]},\"number\":{\"captures\":{\"1\":{\"name\":\"keyword.operator.modifier.beancount\"},\"2\":{\"name\":\"constant.numeric.currency.beancount\"}},\"match\":\"([-+|]?)(\\\\d+(?:,\\\\d{3})*(?:\\\\.\\\\d*)?)\"},\"posting\":{\"begin\":\"^\\\\s+(?=([!A-Z]))\",\"end\":\"(?=^(\\\\s*$|\\\\S|\\\\s*[A-Z]))\",\"name\":\"meta.posting.beancount\",\"patterns\":[{\"include\":\"#meta\"},{\"include\":\"#comments\"},{\"include\":\"#flag\"},{\"include\":\"#account\"},{\"include\":\"#amount\"},{\"include\":\"#cost\"},{\"include\":\"#date\"},{\"include\":\"#price\"},{\"include\":\"#illegal\"}]},\"price\":{\"begin\":\"@@?\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.operator.assignment.beancount\"}},\"end\":\"(?=([\\\\n;]))\",\"name\":\"meta.price.beancount\",\"patterns\":[{\"include\":\"#amount\"},{\"include\":\"#illegal\"}]},\"string\":{\"begin\":\"\\\"\",\"end\":\"\\\"\",\"name\":\"string.quoted.double.beancount\",\"patterns\":[{\"match\":\"\\\\\\\\.\",\"name\":\"constant.character.escape.beancount\"}]},\"tag\":{\"captures\":{\"1\":{\"name\":\"keyword.operator.tag.beancount\"},\"2\":{\"name\":\"entity.name.tag.beancount\"}},\"match\":\"(#)([\\\\--9A-Z_a-z]+)\"}},\"scopeName\":\"text.beancount\"}"))];
2
+ export { beancount_default as default };
@@ -0,0 +1,2 @@
1
+ var berry_default = [Object.freeze(JSON.parse("{\"displayName\":\"Berry\",\"name\":\"berry\",\"patterns\":[{\"include\":\"#controls\"},{\"include\":\"#strings\"},{\"include\":\"#comment-block\"},{\"include\":\"#comments\"},{\"include\":\"#keywords\"},{\"include\":\"#function\"},{\"include\":\"#member\"},{\"include\":\"#identifier\"},{\"include\":\"#number\"},{\"include\":\"#operator\"}],\"repository\":{\"comment-block\":{\"begin\":\"#-\",\"end\":\"-#\",\"name\":\"comment.berry\",\"patterns\":[{}]},\"comments\":{\"begin\":\"#\",\"end\":\"\\\\n\",\"name\":\"comment.line.berry\",\"patterns\":[{}]},\"controls\":{\"patterns\":[{\"match\":\"\\\\b(if|elif|else|for|while|do|end|break|continue|return|try|except|raise)\\\\b\",\"name\":\"keyword.control.berry\"}]},\"function\":{\"patterns\":[{\"match\":\"\\\\b([A-Z_a-z][0-9A-Z_a-z]*(?=\\\\s*\\\\())\",\"name\":\"entity.name.function.berry\"}]},\"identifier\":{\"patterns\":[{\"match\":\"\\\\b[A-Z_a-z]\\\\w+\\\\b\",\"name\":\"identifier.berry\"}]},\"keywords\":{\"patterns\":[{\"match\":\"\\\\b(var|static|def|class|true|false|nil|self|super|import|as|_class)\\\\b\",\"name\":\"keyword.berry\"}]},\"member\":{\"patterns\":[{\"captures\":{\"0\":{\"name\":\"entity.other.attribute-name.berry\"}},\"match\":\"\\\\.([A-Z_a-z][0-9A-Z_a-z]*)\"}]},\"number\":{\"patterns\":[{\"match\":\"0x\\\\h+|\\\\d+|(\\\\d+\\\\.?|\\\\.\\\\d)\\\\d*([Ee][-+]?\\\\d+)?\",\"name\":\"constant.numeric.berry\"}]},\"operator\":{\"patterns\":[{\"match\":\"[-\\\\]!%\\\\&(-+./:<=>\\\\[^|~]\",\"name\":\"keyword.operator.berry\"}]},\"strings\":{\"patterns\":[{\"begin\":\"f(?=[\\\"'])\",\"patterns\":[{\"begin\":\"\\\"\",\"end\":\"\\\"\",\"name\":\"string.quoted.other.berry\",\"patterns\":[{\"match\":\"(\\\\\\\\x\\\\h{2})|(\\\\\\\\[0-7]{3})|(\\\\\\\\\\\\\\\\)|(\\\\\\\\\\\")|(\\\\\\\\')|(\\\\\\\\a)|(\\\\\\\\b)|(\\\\\\\\f)|(\\\\\\\\n)|(\\\\\\\\r)|(\\\\\\\\t)|(\\\\\\\\v)\",\"name\":\"constant.character.escape.berry\"},{\"match\":\"\\\\{\\\\{[^}]*}}\",\"name\":\"string.quoted.other.berry\"},{\"begin\":\"\\\\{\",\"end\":\"}\",\"name\":\"keyword.other.unit.berry\",\"patterns\":[{\"include\":\"#keywords\"},{\"include\":\"#numbers\"},{\"include\":\"#identifier\"},{\"include\":\"#operator\"},{\"include\":\"#member\"},{\"include\":\"#function\"}]}]},{\"begin\":\"'\",\"end\":\"'\",\"name\":\"string.quoted.other.berry\",\"patterns\":[{\"match\":\"(\\\\\\\\x\\\\h{2})|(\\\\\\\\[0-7]{3})|(\\\\\\\\\\\\\\\\)|(\\\\\\\\\\\")|(\\\\\\\\')|(\\\\\\\\a)|(\\\\\\\\b)|(\\\\\\\\f)|(\\\\\\\\n)|(\\\\\\\\r)|(\\\\\\\\t)|(\\\\\\\\v)\",\"name\":\"constant.character.escape.berry\"},{\"match\":\"\\\\{\\\\{[^}]*}}\",\"name\":\"string.quoted.other.berry\"},{\"begin\":\"\\\\{\",\"end\":\"}\",\"name\":\"keyword.other.unit.berry\",\"patterns\":[{\"include\":\"#keywords\"},{\"include\":\"#numbers\"},{\"include\":\"#identifier\"},{\"include\":\"#operator\"},{\"include\":\"#member\"},{\"include\":\"#function\"}]}]}],\"while\":\"\\\\G|^[\\\\t ]*(?=[\\\"'])\"},{\"begin\":\"([\\\"'])\",\"end\":\"\\\\1\",\"name\":\"string.quoted.double.berry\",\"patterns\":[{\"match\":\"(\\\\\\\\x\\\\h{2})|(\\\\\\\\[0-7]{3})|(\\\\\\\\\\\\\\\\)|(\\\\\\\\\\\")|(\\\\\\\\')|(\\\\\\\\a)|(\\\\\\\\b)|(\\\\\\\\f)|(\\\\\\\\n)|(\\\\\\\\r)|(\\\\\\\\t)|(\\\\\\\\v)\",\"name\":\"constant.character.escape.berry\"}]}]}},\"scopeName\":\"source.berry\",\"aliases\":[\"be\"]}"))];
2
+ export { berry_default as default };