@loopstack/loopstack-studio 0.21.0-rc.0 → 0.21.1

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 (680) hide show
  1. package/dist/components/LoadingCentered.js +28 -0
  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/DataList.js +102 -102
  11. package/dist/components/data-table/DataTable.js +102 -99
  12. package/dist/components/dynamic-form/CodeContent.js +2 -2
  13. package/dist/components/dynamic-form/FormElement.js +3 -3
  14. package/dist/components/dynamic-form/FormElementHeader.js +2 -2
  15. package/dist/components/dynamic-form/ObjectController.js +2 -2
  16. package/dist/components/dynamic-form/fields/RadioField.js +3 -3
  17. package/dist/components/dynamic-form/fields/SliderField.js +13 -13
  18. package/dist/components/dynamic-form/fields/SwitchField.js +1 -1
  19. package/dist/components/dynamic-form/fields/TextareaField.js +4 -4
  20. package/dist/components/index.js +45 -0
  21. package/dist/components/layout/MainLayout.js +0 -1
  22. package/dist/components/lists/ListView.js +62 -59
  23. package/dist/components/loopstack-elements/link.js +115 -0
  24. package/dist/components/messages/CompletionMessagePaper.js +110 -0
  25. package/dist/components/snackbars/ErrorSnackbar.js +1 -1
  26. package/dist/components/ui/DiscordLogo.js +31 -0
  27. package/dist/components/ui/GoogleLogo.js +44 -0
  28. package/dist/components/ui/accordion.js +64 -0
  29. package/dist/components/ui/alert-dialog.js +91 -82
  30. package/dist/components/ui/alert.js +50 -0
  31. package/dist/components/ui/avatar.js +42 -0
  32. package/dist/components/ui/badge.js +1 -1
  33. package/dist/components/ui/breadcrumb.js +76 -56
  34. package/dist/components/ui/button-group.js +13 -0
  35. package/dist/components/ui/card.js +79 -19
  36. package/dist/components/ui/command.js +7 -0
  37. package/dist/components/ui/context-menu.js +63 -0
  38. package/dist/components/ui/dialog.js +89 -47
  39. package/dist/components/ui/drawer.js +122 -0
  40. package/dist/components/ui/dropdown-menu.js +190 -0
  41. package/dist/components/ui/hover-card.js +6 -0
  42. package/dist/components/ui/input-group.js +85 -0
  43. package/dist/components/ui/popover.js +47 -0
  44. package/dist/components/ui/scroll-area.js +50 -0
  45. package/dist/components/ui/select.js +115 -82
  46. package/dist/components/ui/separator.js +20 -0
  47. package/dist/components/ui/sheet.js +87 -57
  48. package/dist/components/ui/sidebar.js +557 -0
  49. package/dist/components/ui/skeleton.js +16 -0
  50. package/dist/components/ui/table.js +85 -61
  51. package/dist/components/ui/tabs.js +54 -0
  52. package/dist/components/ui-widgets/UiActions.js +24 -0
  53. package/dist/components/ui-widgets/UiWidget.js +43 -0
  54. package/dist/components/ui-widgets/widgets/AiPromptInput.js +43 -0
  55. package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +23 -0
  56. package/dist/components/ui-widgets/widgets/SubmitButton.js +23 -0
  57. package/dist/features/code-explorer/CodeExplorer.js +69 -0
  58. package/dist/features/code-explorer/components/CodeExplorerTree.js +43 -0
  59. package/dist/features/code-explorer/components/CodeExplorerTreeNode.js +82 -0
  60. package/dist/features/code-explorer/components/FileContentViewer.js +237 -0
  61. package/dist/features/code-explorer/components/FileTabsBar.js +191 -0
  62. package/dist/features/code-explorer/providers/CodeExplorerProvider.js +165 -0
  63. package/dist/features/code-explorer/utils/fileIcons.js +42 -0
  64. package/dist/features/dashboard/Dashboard.js +125 -0
  65. package/dist/features/dashboard/RunItem.js +76 -0
  66. package/dist/features/dashboard/RunList.js +32 -0
  67. package/dist/features/debug/components/ConfigFlowViewer.js +79 -0
  68. package/dist/features/debug/components/PipelineDebugHeader.js +48 -0
  69. package/dist/features/debug/components/PipelineDebugLegend.js +68 -0
  70. package/dist/features/debug/components/PipelineFlowViewer.js +109 -0
  71. package/dist/features/debug/components/pipeline-flow/StateNode.js +111 -0
  72. package/dist/features/debug/components/pipeline-flow/WorkflowGraph.js +41 -0
  73. package/dist/features/debug/components/pipeline-flow/WorkflowTransitionEdge.js +97 -0
  74. package/dist/features/debug/lib/edge-paths.js +47 -0
  75. package/dist/features/debug/lib/flow-utils.js +247 -0
  76. package/dist/features/health/LocalHealthCheck.js +2 -2
  77. package/dist/features/oauth/OAuthCallbackPage.js +2 -0
  78. package/dist/features/oauth/OAuthPromptRenderer.js +223 -0
  79. package/dist/features/oauth/index.js +3 -0
  80. package/dist/features/oauth/useOAuthPopup.js +83 -0
  81. package/dist/features/workbench/NavigationItems.js +52 -0
  82. package/dist/features/workbench/Workbench.js +101 -0
  83. package/dist/features/workbench/WorkbenchNavigation.js +38 -0
  84. package/dist/features/workbench/WorkflowItem.js +67 -0
  85. package/dist/features/workbench/WorkflowList.js +110 -0
  86. package/dist/features/workbench/components/DocumentItem.js +27 -0
  87. package/dist/features/workbench/components/DocumentList.js +40 -0
  88. package/dist/features/workbench/components/DocumentMetadataPills.js +63 -0
  89. package/dist/features/workbench/components/DocumentRenderer.js +54 -0
  90. package/dist/features/workbench/components/NavigationItem.js +68 -0
  91. package/dist/features/workbench/components/PipelineHistoryList.js +56 -0
  92. package/dist/features/workbench/components/WorkbenchSettingsModal.js +89 -0
  93. package/dist/features/workbench/components/WorkbenchSidebar.js +109 -0
  94. package/dist/features/workbench/components/WorkflowForms.js +22 -0
  95. package/dist/features/workbench/components/WorkflowHistoryItem.js +144 -0
  96. package/dist/features/workbench/components/buttons/WorkflowButtons.js +85 -0
  97. package/dist/features/workbench/components/document-details/DocumentDetails.js +425 -0
  98. package/dist/features/workbench/components/document-details/PromptDetails.js +146 -0
  99. package/dist/features/workbench/components/document-renderer/AiMessage.js +56 -0
  100. package/dist/features/workbench/components/document-renderer/AiMessageContent.js +174 -0
  101. package/dist/features/workbench/components/document-renderer/DocumentDebugRenderer.js +30 -0
  102. package/dist/features/workbench/components/document-renderer/DocumentFormRenderer.js +79 -0
  103. package/dist/features/workbench/components/document-renderer/DocumentMessageRenderer.js +10 -0
  104. package/dist/features/workbench/components/document-renderer/ErrorMessageRenderer.js +13 -0
  105. package/dist/features/workbench/components/document-renderer/LinkMessageRenderer.js +17 -0
  106. package/dist/features/workbench/components/document-renderer/MarkdownMessageRenderer.js +10 -0
  107. package/dist/features/workbench/components/document-renderer/PlainMessageRenderer.js +9 -0
  108. package/dist/features/workbench/hooks/useAutoScrollBottom.js +29 -0
  109. package/dist/features/workbench/hooks/useIntersectionObserver.js +44 -0
  110. package/dist/features/workbench/hooks/useScrollToListItem.js +23 -0
  111. package/dist/features/workbench/providers/ScrollProvider.js +22 -0
  112. package/dist/features/workbench/providers/WorkbenchContextProvider.js +3 -0
  113. package/dist/features/workspaces/Workspaces.js +157 -90
  114. package/dist/features/workspaces/components/CreateWorkspace.js +104 -81
  115. package/dist/features/workspaces/components/ExecutionTimeline.js +2 -2
  116. package/dist/features/workspaces/components/PipelineForm.js +2 -2
  117. package/dist/hooks/index.js +1 -0
  118. package/dist/hooks/useApi.js +1 -1
  119. package/dist/hooks/useDashboard.js +23 -0
  120. package/dist/hooks/useDocuments.js +45 -0
  121. package/dist/hooks/useFiles.js +63 -0
  122. package/dist/hooks/useNamespaceTree.js +27 -0
  123. package/dist/hooks/useNamespaces.js +34 -0
  124. package/dist/hooks/usePipelines.js +83 -6
  125. package/dist/hooks/useWorkflows.js +122 -0
  126. package/dist/hooks/useWorkspaces.js +49 -29
  127. package/dist/index.d.ts +817 -9
  128. package/dist/index.js +55 -1
  129. package/dist/lib/requireParam.js +6 -0
  130. package/dist/loopstack-studio.css +1 -1
  131. package/dist/node_modules/@ai-sdk/provider/dist/index.js +65 -0
  132. package/dist/node_modules/@ai-sdk/provider-utils/dist/index.js +1008 -0
  133. package/dist/node_modules/@dagrejs/dagre/dist/dagre.esm.js +1968 -0
  134. package/dist/node_modules/@shikijs/core/dist/index.js +1420 -0
  135. package/dist/node_modules/@shikijs/engine-oniguruma/dist/index.js +236 -0
  136. package/dist/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.js +2 -0
  137. package/dist/node_modules/@shikijs/langs/dist/abap.js +2 -0
  138. package/dist/node_modules/@shikijs/langs/dist/actionscript-3.js +2 -0
  139. package/dist/node_modules/@shikijs/langs/dist/ada.js +2 -0
  140. package/dist/node_modules/@shikijs/langs/dist/angular-expression.js +2 -0
  141. package/dist/node_modules/@shikijs/langs/dist/angular-html.js +14 -0
  142. package/dist/node_modules/@shikijs/langs/dist/angular-inline-style.js +3 -0
  143. package/dist/node_modules/@shikijs/langs/dist/angular-inline-template.js +8 -0
  144. package/dist/node_modules/@shikijs/langs/dist/angular-let-declaration.js +3 -0
  145. package/dist/node_modules/@shikijs/langs/dist/angular-template-blocks.js +8 -0
  146. package/dist/node_modules/@shikijs/langs/dist/angular-template.js +3 -0
  147. package/dist/node_modules/@shikijs/langs/dist/angular-ts.js +16 -0
  148. package/dist/node_modules/@shikijs/langs/dist/apache.js +2 -0
  149. package/dist/node_modules/@shikijs/langs/dist/apex.js +2 -0
  150. package/dist/node_modules/@shikijs/langs/dist/apl.js +14 -0
  151. package/dist/node_modules/@shikijs/langs/dist/applescript.js +2 -0
  152. package/dist/node_modules/@shikijs/langs/dist/ara.js +2 -0
  153. package/dist/node_modules/@shikijs/langs/dist/asciidoc.js +2 -0
  154. package/dist/node_modules/@shikijs/langs/dist/asm.js +2 -0
  155. package/dist/node_modules/@shikijs/langs/dist/astro.js +16 -0
  156. package/dist/node_modules/@shikijs/langs/dist/awk.js +2 -0
  157. package/dist/node_modules/@shikijs/langs/dist/ballerina.js +2 -0
  158. package/dist/node_modules/@shikijs/langs/dist/bat.js +2 -0
  159. package/dist/node_modules/@shikijs/langs/dist/beancount.js +2 -0
  160. package/dist/node_modules/@shikijs/langs/dist/berry.js +2 -0
  161. package/dist/node_modules/@shikijs/langs/dist/bibtex.js +2 -0
  162. package/dist/node_modules/@shikijs/langs/dist/bicep.js +2 -0
  163. package/dist/node_modules/@shikijs/langs/dist/bird2.js +2 -0
  164. package/dist/node_modules/@shikijs/langs/dist/blade.js +18 -0
  165. package/dist/node_modules/@shikijs/langs/dist/bsl.js +3 -0
  166. package/dist/node_modules/@shikijs/langs/dist/c.js +2 -0
  167. package/dist/node_modules/@shikijs/langs/dist/c3.js +2 -0
  168. package/dist/node_modules/@shikijs/langs/dist/cadence.js +2 -0
  169. package/dist/node_modules/@shikijs/langs/dist/cairo.js +3 -0
  170. package/dist/node_modules/@shikijs/langs/dist/clarity.js +2 -0
  171. package/dist/node_modules/@shikijs/langs/dist/clojure.js +2 -0
  172. package/dist/node_modules/@shikijs/langs/dist/cmake.js +2 -0
  173. package/dist/node_modules/@shikijs/langs/dist/cobol.js +8 -0
  174. package/dist/node_modules/@shikijs/langs/dist/codeowners.js +2 -0
  175. package/dist/node_modules/@shikijs/langs/dist/codeql.js +2 -0
  176. package/dist/node_modules/@shikijs/langs/dist/coffee.js +3 -0
  177. package/dist/node_modules/@shikijs/langs/dist/common-lisp.js +2 -0
  178. package/dist/node_modules/@shikijs/langs/dist/coq.js +2 -0
  179. package/dist/node_modules/@shikijs/langs/dist/cpp-macro.js +10 -0
  180. package/dist/node_modules/@shikijs/langs/dist/cpp.js +12 -0
  181. package/dist/node_modules/@shikijs/langs/dist/crystal.js +16 -0
  182. package/dist/node_modules/@shikijs/langs/dist/csharp.js +2 -0
  183. package/dist/node_modules/@shikijs/langs/dist/css.js +2 -0
  184. package/dist/node_modules/@shikijs/langs/dist/csv.js +2 -0
  185. package/dist/node_modules/@shikijs/langs/dist/cue.js +2 -0
  186. package/dist/node_modules/@shikijs/langs/dist/cypher.js +2 -0
  187. package/dist/node_modules/@shikijs/langs/dist/d.js +2 -0
  188. package/dist/node_modules/@shikijs/langs/dist/dart.js +2 -0
  189. package/dist/node_modules/@shikijs/langs/dist/dax.js +2 -0
  190. package/dist/node_modules/@shikijs/langs/dist/desktop.js +2 -0
  191. package/dist/node_modules/@shikijs/langs/dist/diff.js +2 -0
  192. package/dist/node_modules/@shikijs/langs/dist/docker.js +2 -0
  193. package/dist/node_modules/@shikijs/langs/dist/dotenv.js +2 -0
  194. package/dist/node_modules/@shikijs/langs/dist/dream-maker.js +2 -0
  195. package/dist/node_modules/@shikijs/langs/dist/edge.js +10 -0
  196. package/dist/node_modules/@shikijs/langs/dist/elixir.js +3 -0
  197. package/dist/node_modules/@shikijs/langs/dist/elm.js +3 -0
  198. package/dist/node_modules/@shikijs/langs/dist/emacs-lisp.js +2 -0
  199. package/dist/node_modules/@shikijs/langs/dist/erb.js +8 -0
  200. package/dist/node_modules/@shikijs/langs/dist/erlang.js +3 -0
  201. package/dist/node_modules/@shikijs/langs/dist/es-tag-css.js +10 -0
  202. package/dist/node_modules/@shikijs/langs/dist/es-tag-glsl.js +10 -0
  203. package/dist/node_modules/@shikijs/langs/dist/es-tag-html.js +10 -0
  204. package/dist/node_modules/@shikijs/langs/dist/es-tag-sql.js +8 -0
  205. package/dist/node_modules/@shikijs/langs/dist/es-tag-xml.js +3 -0
  206. package/dist/node_modules/@shikijs/langs/dist/fennel.js +2 -0
  207. package/dist/node_modules/@shikijs/langs/dist/fish.js +2 -0
  208. package/dist/node_modules/@shikijs/langs/dist/fluent.js +2 -0
  209. package/dist/node_modules/@shikijs/langs/dist/fortran-fixed-form.js +3 -0
  210. package/dist/node_modules/@shikijs/langs/dist/fortran-free-form.js +2 -0
  211. package/dist/node_modules/@shikijs/langs/dist/fsharp.js +3 -0
  212. package/dist/node_modules/@shikijs/langs/dist/gdresource.js +8 -0
  213. package/dist/node_modules/@shikijs/langs/dist/gdscript.js +2 -0
  214. package/dist/node_modules/@shikijs/langs/dist/gdshader.js +2 -0
  215. package/dist/node_modules/@shikijs/langs/dist/genie.js +2 -0
  216. package/dist/node_modules/@shikijs/langs/dist/gherkin.js +2 -0
  217. package/dist/node_modules/@shikijs/langs/dist/git-commit.js +3 -0
  218. package/dist/node_modules/@shikijs/langs/dist/git-rebase.js +3 -0
  219. package/dist/node_modules/@shikijs/langs/dist/gleam.js +2 -0
  220. package/dist/node_modules/@shikijs/langs/dist/glimmer-js.js +12 -0
  221. package/dist/node_modules/@shikijs/langs/dist/glimmer-ts.js +12 -0
  222. package/dist/node_modules/@shikijs/langs/dist/glsl.js +3 -0
  223. package/dist/node_modules/@shikijs/langs/dist/gn.js +2 -0
  224. package/dist/node_modules/@shikijs/langs/dist/gnuplot.js +2 -0
  225. package/dist/node_modules/@shikijs/langs/dist/go.js +2 -0
  226. package/dist/node_modules/@shikijs/langs/dist/graphql.js +12 -0
  227. package/dist/node_modules/@shikijs/langs/dist/groovy.js +2 -0
  228. package/dist/node_modules/@shikijs/langs/dist/hack.js +8 -0
  229. package/dist/node_modules/@shikijs/langs/dist/haml.js +8 -0
  230. package/dist/node_modules/@shikijs/langs/dist/handlebars.js +12 -0
  231. package/dist/node_modules/@shikijs/langs/dist/haskell.js +2 -0
  232. package/dist/node_modules/@shikijs/langs/dist/haxe.js +2 -0
  233. package/dist/node_modules/@shikijs/langs/dist/hcl.js +2 -0
  234. package/dist/node_modules/@shikijs/langs/dist/hjson.js +2 -0
  235. package/dist/node_modules/@shikijs/langs/dist/hlsl.js +2 -0
  236. package/dist/node_modules/@shikijs/langs/dist/html-derivative.js +3 -0
  237. package/dist/node_modules/@shikijs/langs/dist/html.js +8 -0
  238. package/dist/node_modules/@shikijs/langs/dist/http.js +12 -0
  239. package/dist/node_modules/@shikijs/langs/dist/hurl.js +10 -0
  240. package/dist/node_modules/@shikijs/langs/dist/hxml.js +3 -0
  241. package/dist/node_modules/@shikijs/langs/dist/hy.js +2 -0
  242. package/dist/node_modules/@shikijs/langs/dist/imba.js +2 -0
  243. package/dist/node_modules/@shikijs/langs/dist/ini.js +2 -0
  244. package/dist/node_modules/@shikijs/langs/dist/java.js +2 -0
  245. package/dist/node_modules/@shikijs/langs/dist/javascript.js +2 -0
  246. package/dist/node_modules/@shikijs/langs/dist/jinja-html.js +3 -0
  247. package/dist/node_modules/@shikijs/langs/dist/jinja.js +3 -0
  248. package/dist/node_modules/@shikijs/langs/dist/jison.js +3 -0
  249. package/dist/node_modules/@shikijs/langs/dist/json.js +2 -0
  250. package/dist/node_modules/@shikijs/langs/dist/json5.js +2 -0
  251. package/dist/node_modules/@shikijs/langs/dist/jsonc.js +2 -0
  252. package/dist/node_modules/@shikijs/langs/dist/jsonl.js +2 -0
  253. package/dist/node_modules/@shikijs/langs/dist/jsonnet.js +2 -0
  254. package/dist/node_modules/@shikijs/langs/dist/jssm.js +2 -0
  255. package/dist/node_modules/@shikijs/langs/dist/jsx.js +2 -0
  256. package/dist/node_modules/@shikijs/langs/dist/julia.js +14 -0
  257. package/dist/node_modules/@shikijs/langs/dist/just.js +16 -0
  258. package/dist/node_modules/@shikijs/langs/dist/kdl.js +2 -0
  259. package/dist/node_modules/@shikijs/langs/dist/kotlin.js +2 -0
  260. package/dist/node_modules/@shikijs/langs/dist/kusto.js +2 -0
  261. package/dist/node_modules/@shikijs/langs/dist/latex.js +3 -0
  262. package/dist/node_modules/@shikijs/langs/dist/lean.js +2 -0
  263. package/dist/node_modules/@shikijs/langs/dist/less.js +2 -0
  264. package/dist/node_modules/@shikijs/langs/dist/liquid.js +12 -0
  265. package/dist/node_modules/@shikijs/langs/dist/llvm.js +2 -0
  266. package/dist/node_modules/@shikijs/langs/dist/log.js +2 -0
  267. package/dist/node_modules/@shikijs/langs/dist/logo.js +2 -0
  268. package/dist/node_modules/@shikijs/langs/dist/lua.js +3 -0
  269. package/dist/node_modules/@shikijs/langs/dist/luau.js +2 -0
  270. package/dist/node_modules/@shikijs/langs/dist/make.js +2 -0
  271. package/dist/node_modules/@shikijs/langs/dist/markdown-nix.js +2 -0
  272. package/dist/node_modules/@shikijs/langs/dist/markdown-vue.js +2 -0
  273. package/dist/node_modules/@shikijs/langs/dist/markdown.js +2 -0
  274. package/dist/node_modules/@shikijs/langs/dist/marko.js +12 -0
  275. package/dist/node_modules/@shikijs/langs/dist/matlab.js +2 -0
  276. package/dist/node_modules/@shikijs/langs/dist/mdc.js +10 -0
  277. package/dist/node_modules/@shikijs/langs/dist/mdx.js +2 -0
  278. package/dist/node_modules/@shikijs/langs/dist/mermaid.js +2 -0
  279. package/dist/node_modules/@shikijs/langs/dist/mipsasm.js +2 -0
  280. package/dist/node_modules/@shikijs/langs/dist/mojo.js +2 -0
  281. package/dist/node_modules/@shikijs/langs/dist/moonbit.js +2 -0
  282. package/dist/node_modules/@shikijs/langs/dist/move.js +2 -0
  283. package/dist/node_modules/@shikijs/langs/dist/narrat.js +2 -0
  284. package/dist/node_modules/@shikijs/langs/dist/nextflow-groovy.js +2 -0
  285. package/dist/node_modules/@shikijs/langs/dist/nextflow.js +3 -0
  286. package/dist/node_modules/@shikijs/langs/dist/nginx.js +3 -0
  287. package/dist/node_modules/@shikijs/langs/dist/nim.js +18 -0
  288. package/dist/node_modules/@shikijs/langs/dist/nix.js +3 -0
  289. package/dist/node_modules/@shikijs/langs/dist/nushell.js +2 -0
  290. package/dist/node_modules/@shikijs/langs/dist/objective-c.js +2 -0
  291. package/dist/node_modules/@shikijs/langs/dist/objective-cpp.js +2 -0
  292. package/dist/node_modules/@shikijs/langs/dist/ocaml.js +2 -0
  293. package/dist/node_modules/@shikijs/langs/dist/odin.js +2 -0
  294. package/dist/node_modules/@shikijs/langs/dist/openscad.js +2 -0
  295. package/dist/node_modules/@shikijs/langs/dist/pascal.js +2 -0
  296. package/dist/node_modules/@shikijs/langs/dist/perl.js +14 -0
  297. package/dist/node_modules/@shikijs/langs/dist/php.js +16 -0
  298. package/dist/node_modules/@shikijs/langs/dist/pkl.js +2 -0
  299. package/dist/node_modules/@shikijs/langs/dist/plsql.js +2 -0
  300. package/dist/node_modules/@shikijs/langs/dist/po.js +2 -0
  301. package/dist/node_modules/@shikijs/langs/dist/polar.js +2 -0
  302. package/dist/node_modules/@shikijs/langs/dist/postcss.js +2 -0
  303. package/dist/node_modules/@shikijs/langs/dist/powerquery.js +2 -0
  304. package/dist/node_modules/@shikijs/langs/dist/powershell.js +2 -0
  305. package/dist/node_modules/@shikijs/langs/dist/prisma.js +2 -0
  306. package/dist/node_modules/@shikijs/langs/dist/prolog.js +2 -0
  307. package/dist/node_modules/@shikijs/langs/dist/proto.js +2 -0
  308. package/dist/node_modules/@shikijs/langs/dist/pug.js +10 -0
  309. package/dist/node_modules/@shikijs/langs/dist/puppet.js +2 -0
  310. package/dist/node_modules/@shikijs/langs/dist/purescript.js +2 -0
  311. package/dist/node_modules/@shikijs/langs/dist/python.js +2 -0
  312. package/dist/node_modules/@shikijs/langs/dist/qml.js +3 -0
  313. package/dist/node_modules/@shikijs/langs/dist/qmldir.js +2 -0
  314. package/dist/node_modules/@shikijs/langs/dist/qss.js +2 -0
  315. package/dist/node_modules/@shikijs/langs/dist/r.js +2 -0
  316. package/dist/node_modules/@shikijs/langs/dist/racket.js +2 -0
  317. package/dist/node_modules/@shikijs/langs/dist/raku.js +2 -0
  318. package/dist/node_modules/@shikijs/langs/dist/razor.js +8 -0
  319. package/dist/node_modules/@shikijs/langs/dist/reg.js +2 -0
  320. package/dist/node_modules/@shikijs/langs/dist/regexp.js +2 -0
  321. package/dist/node_modules/@shikijs/langs/dist/rel.js +2 -0
  322. package/dist/node_modules/@shikijs/langs/dist/riscv.js +2 -0
  323. package/dist/node_modules/@shikijs/langs/dist/ron.js +2 -0
  324. package/dist/node_modules/@shikijs/langs/dist/rosmsg.js +2 -0
  325. package/dist/node_modules/@shikijs/langs/dist/rst.js +20 -0
  326. package/dist/node_modules/@shikijs/langs/dist/ruby.js +28 -0
  327. package/dist/node_modules/@shikijs/langs/dist/rust.js +2 -0
  328. package/dist/node_modules/@shikijs/langs/dist/sas.js +3 -0
  329. package/dist/node_modules/@shikijs/langs/dist/sass.js +2 -0
  330. package/dist/node_modules/@shikijs/langs/dist/scala.js +2 -0
  331. package/dist/node_modules/@shikijs/langs/dist/scheme.js +2 -0
  332. package/dist/node_modules/@shikijs/langs/dist/scss.js +3 -0
  333. package/dist/node_modules/@shikijs/langs/dist/sdbl.js +2 -0
  334. package/dist/node_modules/@shikijs/langs/dist/shaderlab.js +3 -0
  335. package/dist/node_modules/@shikijs/langs/dist/shellscript.js +2 -0
  336. package/dist/node_modules/@shikijs/langs/dist/shellsession.js +3 -0
  337. package/dist/node_modules/@shikijs/langs/dist/smalltalk.js +2 -0
  338. package/dist/node_modules/@shikijs/langs/dist/solidity.js +2 -0
  339. package/dist/node_modules/@shikijs/langs/dist/soy.js +3 -0
  340. package/dist/node_modules/@shikijs/langs/dist/sparql.js +3 -0
  341. package/dist/node_modules/@shikijs/langs/dist/splunk.js +2 -0
  342. package/dist/node_modules/@shikijs/langs/dist/sql.js +2 -0
  343. package/dist/node_modules/@shikijs/langs/dist/ssh-config.js +2 -0
  344. package/dist/node_modules/@shikijs/langs/dist/stata.js +3 -0
  345. package/dist/node_modules/@shikijs/langs/dist/stylus.js +2 -0
  346. package/dist/node_modules/@shikijs/langs/dist/surrealql.js +3 -0
  347. package/dist/node_modules/@shikijs/langs/dist/svelte.js +12 -0
  348. package/dist/node_modules/@shikijs/langs/dist/swift.js +2 -0
  349. package/dist/node_modules/@shikijs/langs/dist/system-verilog.js +2 -0
  350. package/dist/node_modules/@shikijs/langs/dist/systemd.js +2 -0
  351. package/dist/node_modules/@shikijs/langs/dist/talonscript.js +2 -0
  352. package/dist/node_modules/@shikijs/langs/dist/tasl.js +2 -0
  353. package/dist/node_modules/@shikijs/langs/dist/tcl.js +2 -0
  354. package/dist/node_modules/@shikijs/langs/dist/templ.js +10 -0
  355. package/dist/node_modules/@shikijs/langs/dist/terraform.js +2 -0
  356. package/dist/node_modules/@shikijs/langs/dist/tex.js +3 -0
  357. package/dist/node_modules/@shikijs/langs/dist/toml.js +2 -0
  358. package/dist/node_modules/@shikijs/langs/dist/ts-tags.js +16 -0
  359. package/dist/node_modules/@shikijs/langs/dist/tsv.js +2 -0
  360. package/dist/node_modules/@shikijs/langs/dist/tsx.js +2 -0
  361. package/dist/node_modules/@shikijs/langs/dist/turtle.js +2 -0
  362. package/dist/node_modules/@shikijs/langs/dist/twig.js +16 -0
  363. package/dist/node_modules/@shikijs/langs/dist/typescript.js +2 -0
  364. package/dist/node_modules/@shikijs/langs/dist/typespec.js +2 -0
  365. package/dist/node_modules/@shikijs/langs/dist/typst.js +2 -0
  366. package/dist/node_modules/@shikijs/langs/dist/v.js +2 -0
  367. package/dist/node_modules/@shikijs/langs/dist/vala.js +2 -0
  368. package/dist/node_modules/@shikijs/langs/dist/vb.js +2 -0
  369. package/dist/node_modules/@shikijs/langs/dist/verilog.js +2 -0
  370. package/dist/node_modules/@shikijs/langs/dist/vhdl.js +2 -0
  371. package/dist/node_modules/@shikijs/langs/dist/viml.js +2 -0
  372. package/dist/node_modules/@shikijs/langs/dist/vue-directives.js +2 -0
  373. package/dist/node_modules/@shikijs/langs/dist/vue-html.js +3 -0
  374. package/dist/node_modules/@shikijs/langs/dist/vue-interpolations.js +2 -0
  375. package/dist/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.js +3 -0
  376. package/dist/node_modules/@shikijs/langs/dist/vue-vine.js +16 -0
  377. package/dist/node_modules/@shikijs/langs/dist/vue.js +24 -0
  378. package/dist/node_modules/@shikijs/langs/dist/vyper.js +2 -0
  379. package/dist/node_modules/@shikijs/langs/dist/wasm.js +2 -0
  380. package/dist/node_modules/@shikijs/langs/dist/wenyan.js +2 -0
  381. package/dist/node_modules/@shikijs/langs/dist/wgsl.js +2 -0
  382. package/dist/node_modules/@shikijs/langs/dist/wikitext.js +2 -0
  383. package/dist/node_modules/@shikijs/langs/dist/wit.js +2 -0
  384. package/dist/node_modules/@shikijs/langs/dist/wolfram.js +2 -0
  385. package/dist/node_modules/@shikijs/langs/dist/xml.js +3 -0
  386. package/dist/node_modules/@shikijs/langs/dist/xsl.js +3 -0
  387. package/dist/node_modules/@shikijs/langs/dist/yaml.js +2 -0
  388. package/dist/node_modules/@shikijs/langs/dist/zenscript.js +2 -0
  389. package/dist/node_modules/@shikijs/langs/dist/zig.js +2 -0
  390. package/dist/node_modules/@shikijs/themes/dist/andromeeda.js +2 -0
  391. package/dist/node_modules/@shikijs/themes/dist/aurora-x.js +2 -0
  392. package/dist/node_modules/@shikijs/themes/dist/ayu-dark.js +2 -0
  393. package/dist/node_modules/@shikijs/themes/dist/ayu-light.js +2 -0
  394. package/dist/node_modules/@shikijs/themes/dist/ayu-mirage.js +2 -0
  395. package/dist/node_modules/@shikijs/themes/dist/catppuccin-frappe.js +2 -0
  396. package/dist/node_modules/@shikijs/themes/dist/catppuccin-latte.js +2 -0
  397. package/dist/node_modules/@shikijs/themes/dist/catppuccin-macchiato.js +2 -0
  398. package/dist/node_modules/@shikijs/themes/dist/catppuccin-mocha.js +2 -0
  399. package/dist/node_modules/@shikijs/themes/dist/dark-plus.js +2 -0
  400. package/dist/node_modules/@shikijs/themes/dist/dracula-soft.js +2 -0
  401. package/dist/node_modules/@shikijs/themes/dist/dracula.js +2 -0
  402. package/dist/node_modules/@shikijs/themes/dist/everforest-dark.js +2 -0
  403. package/dist/node_modules/@shikijs/themes/dist/everforest-light.js +2 -0
  404. package/dist/node_modules/@shikijs/themes/dist/github-dark-default.js +2 -0
  405. package/dist/node_modules/@shikijs/themes/dist/github-dark-dimmed.js +2 -0
  406. package/dist/node_modules/@shikijs/themes/dist/github-dark-high-contrast.js +2 -0
  407. package/dist/node_modules/@shikijs/themes/dist/github-dark.js +2 -0
  408. package/dist/node_modules/@shikijs/themes/dist/github-light-default.js +2 -0
  409. package/dist/node_modules/@shikijs/themes/dist/github-light-high-contrast.js +2 -0
  410. package/dist/node_modules/@shikijs/themes/dist/github-light.js +2 -0
  411. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.js +2 -0
  412. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.js +2 -0
  413. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.js +2 -0
  414. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-hard.js +2 -0
  415. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-medium.js +2 -0
  416. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-soft.js +2 -0
  417. package/dist/node_modules/@shikijs/themes/dist/horizon-bright.js +2 -0
  418. package/dist/node_modules/@shikijs/themes/dist/horizon.js +2 -0
  419. package/dist/node_modules/@shikijs/themes/dist/houston.js +2 -0
  420. package/dist/node_modules/@shikijs/themes/dist/kanagawa-dragon.js +2 -0
  421. package/dist/node_modules/@shikijs/themes/dist/kanagawa-lotus.js +2 -0
  422. package/dist/node_modules/@shikijs/themes/dist/kanagawa-wave.js +2 -0
  423. package/dist/node_modules/@shikijs/themes/dist/laserwave.js +2 -0
  424. package/dist/node_modules/@shikijs/themes/dist/light-plus.js +2 -0
  425. package/dist/node_modules/@shikijs/themes/dist/material-theme-darker.js +2 -0
  426. package/dist/node_modules/@shikijs/themes/dist/material-theme-lighter.js +2 -0
  427. package/dist/node_modules/@shikijs/themes/dist/material-theme-ocean.js +2 -0
  428. package/dist/node_modules/@shikijs/themes/dist/material-theme-palenight.js +2 -0
  429. package/dist/node_modules/@shikijs/themes/dist/material-theme.js +2 -0
  430. package/dist/node_modules/@shikijs/themes/dist/min-dark.js +2 -0
  431. package/dist/node_modules/@shikijs/themes/dist/min-light.js +2 -0
  432. package/dist/node_modules/@shikijs/themes/dist/monokai.js +2 -0
  433. package/dist/node_modules/@shikijs/themes/dist/night-owl-light.js +2 -0
  434. package/dist/node_modules/@shikijs/themes/dist/night-owl.js +2 -0
  435. package/dist/node_modules/@shikijs/themes/dist/nord.js +2 -0
  436. package/dist/node_modules/@shikijs/themes/dist/one-dark-pro.js +2 -0
  437. package/dist/node_modules/@shikijs/themes/dist/one-light.js +2 -0
  438. package/dist/node_modules/@shikijs/themes/dist/plastic.js +2 -0
  439. package/dist/node_modules/@shikijs/themes/dist/poimandres.js +2 -0
  440. package/dist/node_modules/@shikijs/themes/dist/red.js +2 -0
  441. package/dist/node_modules/@shikijs/themes/dist/rose-pine-dawn.js +2 -0
  442. package/dist/node_modules/@shikijs/themes/dist/rose-pine-moon.js +2 -0
  443. package/dist/node_modules/@shikijs/themes/dist/rose-pine.js +2 -0
  444. package/dist/node_modules/@shikijs/themes/dist/slack-dark.js +2 -0
  445. package/dist/node_modules/@shikijs/themes/dist/slack-ochin.js +2 -0
  446. package/dist/node_modules/@shikijs/themes/dist/snazzy-light.js +2 -0
  447. package/dist/node_modules/@shikijs/themes/dist/solarized-dark.js +2 -0
  448. package/dist/node_modules/@shikijs/themes/dist/solarized-light.js +2 -0
  449. package/dist/node_modules/@shikijs/themes/dist/synthwave-84.js +2 -0
  450. package/dist/node_modules/@shikijs/themes/dist/tokyo-night.js +2 -0
  451. package/dist/node_modules/@shikijs/themes/dist/vesper.js +2 -0
  452. package/dist/node_modules/@shikijs/themes/dist/vitesse-black.js +2 -0
  453. package/dist/node_modules/@shikijs/themes/dist/vitesse-dark.js +2 -0
  454. package/dist/node_modules/@shikijs/themes/dist/vitesse-light.js +2 -0
  455. package/dist/node_modules/@shikijs/types/dist/index.js +6 -0
  456. package/dist/node_modules/@shikijs/vscode-textmate/dist/index.js +1580 -0
  457. package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +51 -0
  458. package/dist/node_modules/@ungap/structured-clone/esm/index.js +4 -0
  459. package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +91 -0
  460. package/dist/node_modules/@ungap/structured-clone/esm/types.js +2 -0
  461. package/dist/node_modules/@xyflow/react/dist/esm/index.js +3280 -0
  462. package/dist/node_modules/@xyflow/system/dist/esm/index.js +1839 -0
  463. package/dist/node_modules/ai/dist/index.js +1083 -0
  464. package/dist/node_modules/bail/index.js +4 -0
  465. package/dist/node_modules/character-entities-html4/index.js +255 -0
  466. package/dist/node_modules/character-entities-legacy/index.js +2 -0
  467. package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +6 -1
  468. package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +4 -10
  469. package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +56 -65
  470. package/dist/node_modules/classcat/index.js +8 -0
  471. package/dist/node_modules/comma-separated-tokens/index.js +5 -1
  472. package/dist/node_modules/d3/src/index.js +5 -0
  473. package/dist/node_modules/d3-drag/src/constant.js +2 -0
  474. package/dist/node_modules/d3-drag/src/drag.js +112 -0
  475. package/dist/node_modules/d3-drag/src/event.js +60 -0
  476. package/dist/node_modules/d3-drag/src/nodrag.js +13 -0
  477. package/dist/node_modules/d3-drag/src/noevent.js +11 -0
  478. package/dist/node_modules/d3-interpolate/src/zoom.js +39 -0
  479. package/dist/node_modules/d3-selection/src/pointer.js +16 -0
  480. package/dist/node_modules/d3-selection/src/sourceEvent.js +6 -0
  481. package/dist/node_modules/d3-zoom/src/constant.js +2 -0
  482. package/dist/node_modules/d3-zoom/src/event.js +26 -0
  483. package/dist/node_modules/d3-zoom/src/index.js +1 -1
  484. package/dist/node_modules/d3-zoom/src/noevent.js +7 -0
  485. package/dist/node_modules/d3-zoom/src/zoom.js +214 -1
  486. package/dist/node_modules/decode-named-character-reference/index.dom.js +8 -0
  487. package/dist/node_modules/entities/dist/esm/decode-codepoint.js +35 -0
  488. package/dist/node_modules/entities/dist/esm/decode.js +129 -0
  489. package/dist/node_modules/entities/dist/esm/generated/decode-data-html.js +2 -0
  490. package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +5 -0
  491. package/dist/node_modules/extend/index.js +37 -0
  492. package/dist/node_modules/hast-util-from-parse5/lib/index.js +121 -0
  493. package/dist/node_modules/hast-util-raw/lib/index.js +204 -0
  494. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/doctype.js +34 -0
  495. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/error-codes.js +5 -0
  496. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/foreign-content.js +150 -0
  497. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/html.js +267 -0
  498. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/token.js +9 -0
  499. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/unicode.js +65 -0
  500. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/index.js +8 -0
  501. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/formatting-element-list.js +69 -0
  502. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/index.js +1936 -0
  503. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/open-element-stack.js +239 -0
  504. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/serializer/index.js +22 -0
  505. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/index.js +1451 -0
  506. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/preprocessor.js +75 -0
  507. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tree-adapters/default.js +155 -0
  508. package/dist/node_modules/hast-util-sanitize/lib/index.js +159 -0
  509. package/dist/node_modules/hast-util-sanitize/lib/schema.js +73 -0
  510. package/dist/node_modules/hast-util-to-html/lib/handle/comment.js +9 -0
  511. package/dist/node_modules/hast-util-to-html/lib/handle/doctype.js +4 -0
  512. package/dist/node_modules/hast-util-to-html/lib/handle/element.js +47 -0
  513. package/dist/node_modules/hast-util-to-html/lib/handle/index.js +27 -0
  514. package/dist/node_modules/hast-util-to-html/lib/handle/raw.js +5 -0
  515. package/dist/node_modules/hast-util-to-html/lib/handle/root.js +4 -0
  516. package/dist/node_modules/hast-util-to-html/lib/handle/text.js +6 -0
  517. package/dist/node_modules/hast-util-to-html/lib/index.js +46 -0
  518. package/dist/node_modules/hast-util-to-html/lib/omission/closing.js +84 -0
  519. package/dist/node_modules/hast-util-to-html/lib/omission/omission.js +8 -0
  520. package/dist/node_modules/hast-util-to-html/lib/omission/opening.js +37 -0
  521. package/dist/node_modules/hast-util-to-html/lib/omission/util/siblings.js +12 -0
  522. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +251 -0
  523. package/dist/node_modules/hast-util-to-parse5/lib/index.js +113 -0
  524. package/dist/node_modules/hast-util-whitespace/lib/index.js +8 -0
  525. package/dist/node_modules/html-url-attributes/lib/index.js +34 -0
  526. package/dist/node_modules/html-void-elements/index.js +23 -0
  527. package/dist/node_modules/inline-style-parser/cjs/index.js +88 -0
  528. package/dist/node_modules/katex/dist/katex.js +717 -861
  529. package/dist/node_modules/mdast-util-from-markdown/lib/index.js +555 -0
  530. package/dist/node_modules/mdast-util-to-hast/lib/footer.js +101 -0
  531. package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +10 -0
  532. package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +13 -0
  533. package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +20 -0
  534. package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +10 -0
  535. package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +10 -0
  536. package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +28 -0
  537. package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +10 -0
  538. package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +10 -0
  539. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +19 -0
  540. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +13 -0
  541. package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +54 -0
  542. package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +15 -0
  543. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +16 -0
  544. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +13 -0
  545. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +57 -0
  546. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +18 -0
  547. package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +10 -0
  548. package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +8 -0
  549. package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +10 -0
  550. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +10 -0
  551. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +22 -0
  552. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +33 -0
  553. package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +9 -0
  554. package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +10 -0
  555. package/dist/node_modules/mdast-util-to-hast/lib/index.js +17 -0
  556. package/dist/node_modules/mdast-util-to-hast/lib/revert.js +18 -0
  557. package/dist/node_modules/mdast-util-to-hast/lib/state.js +106 -0
  558. package/dist/node_modules/micromark/lib/constructs.js +79 -0
  559. package/dist/node_modules/micromark/lib/create-tokenizer.js +175 -0
  560. package/dist/node_modules/micromark/lib/initialize/content.js +32 -0
  561. package/dist/node_modules/micromark/lib/initialize/document.js +101 -0
  562. package/dist/node_modules/micromark/lib/initialize/flow.js +23 -0
  563. package/dist/node_modules/micromark/lib/initialize/text.js +84 -0
  564. package/dist/node_modules/micromark/lib/parse.js +27 -0
  565. package/dist/node_modules/micromark/lib/postprocess.js +6 -0
  566. package/dist/node_modules/micromark/lib/preprocess.js +30 -0
  567. package/dist/node_modules/micromark-core-commonmark/lib/attention.js +112 -0
  568. package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +41 -0
  569. package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +36 -0
  570. package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +15 -0
  571. package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +27 -0
  572. package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +88 -0
  573. package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +42 -0
  574. package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +41 -0
  575. package/dist/node_modules/micromark-core-commonmark/lib/content.js +46 -0
  576. package/dist/node_modules/micromark-core-commonmark/lib/definition.js +59 -0
  577. package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +15 -0
  578. package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +65 -0
  579. package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +140 -0
  580. package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +98 -0
  581. package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +157 -0
  582. package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +21 -0
  583. package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +18 -0
  584. package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +12 -0
  585. package/dist/node_modules/micromark-core-commonmark/lib/list.js +77 -0
  586. package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +57 -0
  587. package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +23 -0
  588. package/dist/node_modules/micromark-factory-destination/index.js +24 -0
  589. package/dist/node_modules/micromark-factory-label/index.js +18 -0
  590. package/dist/node_modules/micromark-factory-title/index.js +22 -0
  591. package/dist/node_modules/micromark-factory-whitespace/index.js +10 -0
  592. package/dist/node_modules/micromark-util-character/index.js +6 -5
  593. package/dist/node_modules/micromark-util-chunked/index.js +4 -1
  594. package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +5 -0
  595. package/dist/node_modules/micromark-util-decode-string/index.js +15 -0
  596. package/dist/node_modules/micromark-util-html-tag-name/index.js +7 -0
  597. package/dist/node_modules/micromark-util-sanitize-uri/index.js +16 -0
  598. package/dist/node_modules/micromark-util-subtokenize/index.js +33 -0
  599. package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +55 -0
  600. package/dist/node_modules/motion/dist/es/react.js +3 -0
  601. package/dist/node_modules/nanoid/index.browser.js +7 -0
  602. package/dist/node_modules/nanoid/url-alphabet/index.js +2 -0
  603. package/dist/node_modules/property-information/index.js +1 -0
  604. package/dist/node_modules/property-information/lib/hast-to-react.js +20 -0
  605. package/dist/node_modules/rehype-harden/dist/index.js +168 -0
  606. package/dist/node_modules/rehype-raw/lib/index.js +10 -0
  607. package/dist/node_modules/rehype-sanitize/lib/index.js +7 -0
  608. package/dist/node_modules/remark-parse/lib/index.js +14 -0
  609. package/dist/node_modules/remark-rehype/lib/index.js +16 -0
  610. package/dist/node_modules/remend/dist/index.js +459 -0
  611. package/dist/node_modules/shiki/dist/bundle-full.js +11 -0
  612. package/dist/node_modules/shiki/dist/langs.js +1278 -0
  613. package/dist/node_modules/shiki/dist/themes.js +393 -0
  614. package/dist/node_modules/shiki/dist/wasm.js +2 -0
  615. package/dist/node_modules/space-separated-tokens/index.js +4 -1
  616. package/dist/node_modules/streamdown/dist/chunk-RLXIAIE6.js +2189 -0
  617. package/dist/node_modules/streamdown/dist/highlighted-body-B3W2YXNL.js +33 -0
  618. package/dist/node_modules/streamdown/dist/index.js +2 -0
  619. package/dist/node_modules/streamdown/dist/mermaid-3ZIDBTTL.js +3 -0
  620. package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +1421 -0
  621. package/dist/node_modules/stringify-entities/lib/constant/dangerous.js +11 -0
  622. package/dist/node_modules/stringify-entities/lib/core.js +21 -0
  623. package/dist/node_modules/stringify-entities/lib/index.js +6 -0
  624. package/dist/node_modules/stringify-entities/lib/util/format-smart.js +12 -0
  625. package/dist/node_modules/stringify-entities/lib/util/to-decimal.js +6 -0
  626. package/dist/node_modules/stringify-entities/lib/util/to-hexadecimal.js +6 -0
  627. package/dist/node_modules/stringify-entities/lib/util/to-named.js +15 -0
  628. package/dist/node_modules/style-to-js/cjs/index.js +17 -0
  629. package/dist/node_modules/style-to-js/cjs/utilities.js +16 -0
  630. package/dist/node_modules/style-to-object/cjs/index.js +21 -0
  631. package/dist/node_modules/trim-lines/index.js +19 -0
  632. package/dist/node_modules/trough/lib/index.js +48 -0
  633. package/dist/node_modules/unified/lib/callable-instance.js +7 -0
  634. package/dist/node_modules/unified/lib/index.js +160 -0
  635. package/dist/node_modules/unified/node_modules/is-plain-obj/index.js +6 -0
  636. package/dist/node_modules/unist-util-position/lib/index.js +20 -0
  637. package/dist/node_modules/unist-util-stringify-position/lib/index.js +13 -0
  638. package/dist/node_modules/vaul/dist/index.js +912 -0
  639. package/dist/node_modules/vfile/lib/index.js +87 -0
  640. package/dist/node_modules/vfile/lib/minpath.browser.js +97 -0
  641. package/dist/node_modules/vfile/lib/minproc.browser.js +5 -0
  642. package/dist/node_modules/vfile/lib/minurl.browser.js +29 -0
  643. package/dist/node_modules/vfile/lib/minurl.shared.js +4 -0
  644. package/dist/node_modules/vfile-location/lib/index.js +41 -0
  645. package/dist/node_modules/vfile-message/lib/index.js +22 -0
  646. package/dist/node_modules/zod/v3/ZodError.js +79 -0
  647. package/dist/node_modules/zod/v3/errors.js +6 -0
  648. package/dist/node_modules/zod/v3/helpers/errorUtil.js +5 -0
  649. package/dist/node_modules/zod/v3/helpers/parseUtil.js +90 -0
  650. package/dist/node_modules/zod/v3/helpers/util.js +72 -0
  651. package/dist/node_modules/zod/v3/locales/en.js +58 -0
  652. package/dist/node_modules/zod/v3/types.js +2425 -0
  653. package/dist/node_modules/zod/v4/classic/errors.js +21 -0
  654. package/dist/node_modules/zod/v4/classic/iso.js +29 -0
  655. package/dist/node_modules/zod/v4/classic/parse.js +4 -0
  656. package/dist/node_modules/zod/v4/classic/schemas.js +392 -0
  657. package/dist/node_modules/zod/v4/core/api.js +532 -0
  658. package/dist/node_modules/zod/v4/core/checks.js +283 -0
  659. package/dist/node_modules/zod/v4/core/core.js +44 -0
  660. package/dist/node_modules/zod/v4/core/doc.js +21 -0
  661. package/dist/node_modules/zod/v4/core/errors.js +40 -0
  662. package/dist/node_modules/zod/v4/core/json-schema-processors.js +305 -0
  663. package/dist/node_modules/zod/v4/core/parse.js +66 -0
  664. package/dist/node_modules/zod/v4/core/regexes.js +28 -0
  665. package/dist/node_modules/zod/v4/core/registries.js +38 -0
  666. package/dist/node_modules/zod/v4/core/schemas.js +863 -0
  667. package/dist/node_modules/zod/v4/core/to-json-schema.js +220 -0
  668. package/dist/node_modules/zod/v4/core/util.js +267 -0
  669. package/dist/node_modules/zod/v4/core/versions.js +6 -0
  670. package/dist/node_modules/zwitch/index.js +14 -0
  671. package/dist/pages/DashboardPage.js +58 -0
  672. package/dist/pages/DebugWorkflowDetailsPage.js +121 -0
  673. package/dist/pages/DebugWorkflowsPage.js +130 -0
  674. package/dist/pages/EmbedWorkbenchPage.js +73 -0
  675. package/dist/pages/PipelineDebugPage.js +114 -0
  676. package/dist/pages/WorkbenchPage.js +67 -0
  677. package/dist/pages/WorkspacePage.js +1 -1
  678. package/dist/providers/ComponentOverridesProvider.js +12 -0
  679. package/dist/routing/LocalRouter.js +3 -0
  680. package/package.json +16 -16
@@ -0,0 +1,2 @@
1
+ var gherkin_default = [Object.freeze(JSON.parse("{\"displayName\":\"Gherkin\",\"fileTypes\":[\"feature\"],\"firstLineMatch\":\"기능|機能|功能|フィーチャ|خاصية|תכונה|Функціонал|Функционалност|Функционал|Особина|Функция|Функциональность|Свойство|Могућност|Özellik|Właściwość|Tính năng|Savybė|Požiadavka|Požadavek|Osobina|Ominaisuus|Omadus|OH HAI|Mogućnost|Mogucnost|Jellemző|Fīča|Funzionalità|Funktionalität|Funkcionalnost|Funkcionalitāte|Funcționalitate|Functionaliteit|Functionalitate|Funcionalitat|Funcionalidade|Fonctionnalité|Fitur|Ability|Business Need|Feature|Egenskap|Egenskab|Crikey|Característica|Arwedd(.*)\",\"foldingStartMarker\":\"^\\\\s*\\\\b(예|시나리오 개요|시나리오|배경|背景|場景大綱|場景|场景大纲|场景|劇本大綱|劇本|例子?|テンプレ|シナリオテンプレート|シナリオテンプレ|シナリオアウトライン|シナリオ|サンプル|سيناريو مخطط|سيناريو|امثلة|الخلفية|תרחיש|תבנית תרחיש|רקע|דוגמאות|Тарих|Сценарій|Сценарији|Сценарио|Сценарий структураси|Сценарий|Структура сценарію|Структура сценарија|Структура сценария|Скица|Рамка на сценарий|Примери?|Приклади|Предыстория|Предистория|Позадина|Передумова|Основа|Мисоллар|Концепт|Контекст|Значения|Örnekler|Założenia|Wharrimean is|Voorbeelden|Variantai|Tình huống|The thing of it is|Tausta?|Tapausaihio|Tapaus|Tapaukset|Szenariogrundriss|Szenario|Szablon scenariusza|Stsenaarium|Struktura scenarija|Skica|Skenario konsep|Skenario|Situācija|Senaryo taslağı|Senaryo|Scénář|Scénario|Schema dello scenario|Scenārijs pēc parauga|Scenārijs|Scenár|Scenariusz|Scenariul de şablon|Scenariul de sablon|Scenariu|Scenarios|Scenario Outline|Scenario Amlinellol|Scenario|Example|Scenarijus|Scenariji|Scenarijaus šablonas|Scenarijai|Scenarij|Scenarie|Rerefons|Raamstsenaarium|Příklady|Példák|Príklady|Przykłady|Primjeri|Primeri?|Pozadí|Pozadina|Pozadie|Plan du scénario|Plan du Scénario|Piemēri|Pavyzdžiai|Paraugs|Osnova scénáře|Osnova|Náčrt Scénáře|Náčrt Scenáru|Mate|MISHUN SRSLY|MISHUN|Kịch bản|Kontext|Konteksts|Kontekstas|Kontekst|Koncept|Khung tình huống|Khung kịch bản|Juhtumid|Háttér|Grundlage|Geçmiş|Forgatókönyv vázlat|Forgatókönyv|Exemplos|Exemples|Exemplele|Exempel|Examples|Esquema do Cenário|Esquema do Cenario|Esquema del escenario|Esquema de l'escenari|Esempi|Escenario?|Enghreifftiau|Eksempler|Ejemplos|EXAMPLZ|Dữ liệu|Dis is what went down|Dasar|Contoh|Contexto|Contexte|Contesto|Condiţii|Conditii|Cobber|Cenário|Cenario|Cefndir|Bối cảnh|Blokes|Beispiele|Bakgrunn|Bakgrund|Baggrund|Background|B4|Antecedents|Antecedentes|All y'all|Achtergrond|Abstrakt Scenario|Abstract Scenario|Rule|Regla|Règle|Regel|Regra)\",\"foldingStopMarker\":\"^\\\\s*$\",\"name\":\"gherkin\",\"patterns\":[{\"include\":\"#feature_element_keyword\"},{\"include\":\"#feature_keyword\"},{\"include\":\"#step_keyword\"},{\"include\":\"#strings_triple_quote\"},{\"include\":\"#strings_single_quote\"},{\"include\":\"#strings_double_quote\"},{\"include\":\"#comments\"},{\"include\":\"#tags\"},{\"include\":\"#scenario_outline_variable\"},{\"include\":\"#table\"}],\"repository\":{\"comments\":{\"captures\":{\"0\":{\"name\":\"comment.line.number-sign\"}},\"match\":\"^\\\\s*(#.*)\"},\"feature_element_keyword\":{\"captures\":{\"1\":{\"name\":\"keyword.language.gherkin.feature.scenario\"},\"2\":{\"name\":\"string.language.gherkin.scenario.title.title\"}},\"match\":\"^\\\\s*(예|시나리오 개요|시나리오|배경|背景|場景大綱|場景|场景大纲|场景|劇本大綱|劇本|例子?|テンプレ|シナリオテンプレート|シナリオテンプレ|シナリオアウトライン|シナリオ|サンプル|سيناريو مخطط|سيناريو|امثلة|الخلفية|תרחיש|תבנית תרחיש|רקע|דוגמאות|Тарих|Сценарій|Сценарији|Сценарио|Сценарий структураси|Сценарий|Структура сценарію|Структура сценарија|Структура сценария|Скица|Рамка на сценарий|Примери?|Приклади|Предыстория|Предистория|Позадина|Передумова|Основа|Мисоллар|Концепт|Контекст|Значения|Örnekler|Założenia|Wharrimean is|Voorbeelden|Variantai|Tình huống|The thing of it is|Tausta?|Tapausaihio|Tapaus|Tapaukset|Szenariogrundriss|Szenario|Szablon scenariusza|Stsenaarium|Struktura scenarija|Skica|Skenario konsep|Skenario|Situācija|Senaryo taslağı|Senaryo|Scénář|Scénario|Schema dello scenario|Scenārijs pēc parauga|Scenārijs|Scenár|Scenariusz|Scenariul de şablon|Scenariul de sablon|Scenariu|Scenarios|Scenario Outline|Scenario Amlinellol|Scenario|Example|Scenarijus|Scenariji|Scenarijaus šablonas|Scenarijai|Scenarij|Scenarie|Rerefons|Raamstsenaarium|Příklady|Példák|Príklady|Przykłady|Primjeri|Primeri?|Pozadí|Pozadina|Pozadie|Plan du scénario|Plan du Scénario|Piemēri|Pavyzdžiai|Paraugs|Osnova scénáře|Osnova|Náčrt Scénáře|Náčrt Scenáru|Mate|MISHUN SRSLY|MISHUN|Kịch bản|Kontext|Konteksts|Kontekstas|Kontekst|Koncept|Khung tình huống|Khung kịch bản|Juhtumid|Háttér|Grundlage|Geçmiş|Forgatókönyv vázlat|Forgatókönyv|Exemplos|Exemples|Exemplele|Exempel|Examples|Esquema do Cenário|Esquema do Cenario|Esquema del escenario|Esquema de l'escenari|Esempi|Escenario?|Enghreifftiau|Eksempler|Ejemplos|EXAMPLZ|Dữ liệu|Dis is what went down|Dasar|Contoh|Contexto|Contexte|Contesto|Condiţii|Conditii|Cobber|Cenário|Cenario|Cefndir|Bối cảnh|Blokes|Beispiele|Bakgrunn|Bakgrund|Baggrund|Background|B4|Antecedents|Antecedentes|All y'all|Achtergrond|Abstrakt Scenario|Abstract Scenario|Rule|Regla|Règle|Regel|Regra):(.*)\"},\"feature_keyword\":{\"captures\":{\"1\":{\"name\":\"keyword.language.gherkin.feature\"},\"2\":{\"name\":\"string.language.gherkin.feature.title\"}},\"match\":\"^\\\\s*(기능|機能|功能|フィーチャ|خاصية|תכונה|Функціонал|Функционалност|Функционал|Особина|Функция|Функциональность|Свойство|Могућност|Özellik|Właściwość|Tính năng|Savybė|Požiadavka|Požadavek|Osobina|Ominaisuus|Omadus|OH HAI|Mogućnost|Mogucnost|Jellemző|Fīča|Funzionalità|Funktionalität|Funkcionalnost|Funkcionalitāte|Funcționalitate|Functionaliteit|Functionalitate|Funcionalitat|Funcionalidade|Fonctionnalité|Fitur|Ability|Business Need|Feature|Ability|Egenskap|Egenskab|Crikey|Característica|Arwedd):(.*)\\\\b\"},\"scenario_outline_variable\":{\"match\":\"<[- 0-9A-Z_a-z]*>\",\"name\":\"variable.other\"},\"step_keyword\":{\"captures\":{\"1\":{\"name\":\"keyword.language.gherkin.feature.step\"}},\"match\":\"^\\\\s*((?:En|[EYو]|Եվ|Ya|Too right|Və|Həm|[AИ]|而且|并且|同时|並且|同時|Ak|Epi|A také|Og|😂|And|Kaj|Ja|Et que|Et qu'|Et|და|Und|Και|અને|וגם|और|तथा|És|Dan|Agus|かつ|Lan|ಮತ್ತು|'ej|latlh|그리고|AN|Un|Ir|an?|Мөн|Тэгээд|Ond|7|ਅਤੇ|Aye|Oraz|Si|Și|Şi|К тому же|Также|An|A tiež|A taktiež|A zároveň|In|Ter|Och|மேலும்|மற்றும்|Һәм|Вә|మరియు|และ|Ve|І|А також|Та|اور|Ва|Và|Maar|لكن|Pero|Բայց|Peru|Yeah nah|Amma|Ancaq|Ali|Но|Però|但是|Men|Ale|😔|But|Sed|Kuid|Mutta|Mais que|Mais qu'|Mais|მაგ­რამ|Aber|Αλλά|પણ|אבל|पर|परन्तु|किन्तु|De|En|Tapi|Ach|Ma|しかし|但し|ただし|Nanging|Ananging|ಆದರೆ|'ach|'a|하지만|단|BUT|Bet|awer|mä|No|Tetapi|Гэхдээ|Харин|Ac|ਪਰ|اما|Avast!|Mas|Dar|А|Иначе|Buh|Али|Toda|Ampak|Vendar|ஆனால்|Ләкин|Әмма|కాని|แต่|Fakat|Ama|Але|لیکن|Лекин|Бирок|Аммо|Nhưng|Ond|Dan|اذاً|ثم|Alavez|Allora|Antonces|Ապա|Entós|But at the end of the day I reckon|O halda|Zatim|То|Aleshores|Cal|那么|那麼|Lè sa a|Le sa a|Onda|Pak|Så|🙏|Then|Do|Siis|Niin|Alors|Entón|Logo|მაშინ|Dann|Τότε|પછી|אזי??|तब|तदा|Akkor|Þá|Maka|Ansin|ならば|Njuk|Banjur|ನಂತರ|vaj|그러면|DEN|Tada??|dann|Тогаш|Togash|Kemudian|Тэгэхэд|Үүний дараа|Tha|Þa|Ða|Tha the|Þa þe|Ða ðe|ਤਦ|آنگاه|Let go and haul|Wtedy|Então|Entao|Atunci|Затем|Тогда|Dun|Den youse gotta|Онда|Tak|Potom|Nato|Potem|Takrat|Entonces|அப்பொழுது|Нәтиҗәдә|అప్పుడు|ดังนั้น|O zaman|Тоді|پھر|تب|Унда|Thì|Yna|Wanneer|متى|عندما|Cuan|Եթե|Երբ|Cuando|It's just unbelievable|Əgər|Nə vaxt ki|Kada|Когато|Quan|[当當]|Lè|Le|Kad|Když|Når|Als|🎬|When|Se|Kui|Kun|Quand|Lorsque|Lorsqu'|Cando|როდესაც|Wenn|Όταν|ક્યારે|כאשר|जब|कदा|Majd|Ha|Amikor|Þegar|Ketika|Nuair a|Nuair nach|Nuair ba|Nuair nár|Quando|もし|Manawa|Menawa|ಸ್ಥಿತಿಯನ್ನು|qaSDI'|만일|만약|WEN|Ja|Kai|wann|Кога|Koga|Apabila|Хэрэв|Tha|Þa|Ða|ਜਦੋਂ|هنگامی|Blimey!|Jeżeli|Jeśli|Gdy|Kiedy|Cand|Când|Когда|Если|Wun|Youse know like when|Када?|Keď|Ak|Ko|Ce|Če|Kadar|När|எப்போது|Әгәр|ఈ పరిస్థితిలో|เมื่อ|Eğer ki|Якщо|Коли|جب|Агар|Khi|Pryd|Gegewe|بفرض|Dau|Dada|Daus|Dadas|Դիցուք|Dáu|Daos|Daes|Y'know|Tutaq ki|Verilir|Dato|Дадено|Donat|Donada|Atès|Atesa|假如|假设|假定|假設|Sipoze|Sipoze ke|Sipoze Ke|Zadani??|Zadano|Pokud|Za předpokladu|Givet|Gegeven|Stel|😐|Given|Donitaĵo|Komence|Eeldades|Oletetaan|Soit|Etant donné que|Etant donné qu'|Etant donnée??|Etant donnés|Etant données|Étant donné que|Étant donné qu'|Étant donnée??|Étant donnés|Étant données|Dados??|მოცემული|Angenommen|Gegeben sei|Gegeben seien|Δεδομένου|આપેલ છે|בהינתן|अगर|यदि|चूंकि|Amennyiben|Adott|Ef|Dengan|Cuir i gcás go|Cuir i gcás nach|Cuir i gcás gur|Cuir i gcás nár|Data|Dati|Date|前提|Nalika|Nalikaning|ನೀಡಿದ|ghu' noblu'|DaH ghu' bejlu'|조건|먼저|I CAN HAZ|Kad|Duota|ugeholl|Дадена|Dadeno|Dadena|Diberi|Bagi|Өгөгдсөн нь|Анх|Gitt|Thurh|Þurh|Ðurh|ਜੇਕਰ|ਜਿਵੇਂ ਕਿ|با فرض|Gangway!|Zakładając|Mając|Zakładając, że|Date fiind|Dat fiind|Dată fiind|Dati fiind|Dați fiind|Daţi fiind|Допустим|Дано|Пусть|Givun|Youse know when youse got|За дато|За дате|За дати|Za dato|Za date|Za dati|Pokiaľ|Za predpokladu|Dano|Podano|Zaradi|Privzeto|கொடுக்கப்பட்ட|Әйтик|చెప్పబడినది|กำหนดให้|Diyelim ki|Припустимо|Припустимо, що|Нехай|اگر|بالفرض|فرض کیا|Агар|Biết|Cho|Anrhegedig a|\\\\*) )\"},\"strings_double_quote\":{\"begin\":\"(?<!['0-9A-Za-z])\\\"\",\"end\":\"\\\"(?!['0-9A-Za-z])\",\"name\":\"string.quoted.double\",\"patterns\":[{\"match\":\"\\\\\\\\.\",\"name\":\"constant.character.escape.untitled\"}]},\"strings_single_quote\":{\"begin\":\"(?<![\\\"0-9A-Za-z])'\",\"end\":\"'(?![\\\"0-9A-Za-z])\",\"name\":\"string.quoted.single\",\"patterns\":[{\"match\":\"\\\\\\\\.\",\"name\":\"constant.character.escape\"}]},\"strings_triple_quote\":{\"begin\":\"\\\"\\\"\\\".*\",\"end\":\"\\\"\\\"\\\"\",\"name\":\"string.quoted.single\"},\"table\":{\"begin\":\"^\\\\s*\\\\|\",\"end\":\"\\\\|\\\\s*$\",\"name\":\"keyword.control.cucumber.table\",\"patterns\":[{\"match\":\"\\\\w\",\"name\":\"source\"}]},\"tags\":{\"captures\":{\"0\":{\"name\":\"entity.name.type.class.tsx\"}},\"match\":\"(@[^\\\\t\\\\n\\\\r @]+)\"}},\"scopeName\":\"text.gherkin.feature\"}"))];
2
+ export { gherkin_default as default };
@@ -0,0 +1,3 @@
1
+ import diff_default from "./diff.js";
2
+ var lang = Object.freeze(JSON.parse("{\"displayName\":\"Git Commit Message\",\"name\":\"git-commit\",\"patterns\":[{\"begin\":\"(?=^diff --git)\",\"contentName\":\"source.diff\",\"end\":\"\\\\z\",\"name\":\"meta.embedded.diff.git-commit\",\"patterns\":[{\"include\":\"source.diff\"}]},{\"begin\":\"^(?!#)\",\"end\":\"^(?=#)\",\"name\":\"meta.scope.message.git-commit\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"invalid.deprecated.line-too-long.git-commit\"},\"2\":{\"name\":\"invalid.illegal.line-too-long.git-commit\"}},\"match\":\"\\\\G.{0,50}(.{0,22}(.*))$\",\"name\":\"meta.scope.subject.git-commit\"}]},{\"begin\":\"^(?=#)\",\"contentName\":\"comment.line.number-sign.git-commit\",\"end\":\"^(?!#)\",\"name\":\"meta.scope.metadata.git-commit\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"markup.changed.git-commit\"}},\"match\":\"^#\\\\t((modified|renamed):.*)$\"},{\"captures\":{\"1\":{\"name\":\"markup.inserted.git-commit\"}},\"match\":\"^#\\\\t(new file:.*)$\"},{\"captures\":{\"1\":{\"name\":\"markup.deleted.git-commit\"}},\"match\":\"^#\\\\t(deleted.*)$\"},{\"captures\":{\"1\":{\"name\":\"keyword.other.file-type.git-commit\"},\"2\":{\"name\":\"string.unquoted.filename.git-commit\"}},\"match\":\"^#\\\\t([^:]+): *(.*)$\"}]}],\"scopeName\":\"text.git-commit\",\"embeddedLangs\":[\"diff\"]}")), git_commit_default = [...diff_default, lang];
3
+ export { git_commit_default as default };
@@ -0,0 +1,3 @@
1
+ import shellscript_default from "./shellscript.js";
2
+ var lang = Object.freeze(JSON.parse("{\"displayName\":\"Git Rebase Message\",\"name\":\"git-rebase\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.definition.comment.git-rebase\"}},\"match\":\"^\\\\s*(#).*$\\\\n?\",\"name\":\"comment.line.number-sign.git-rebase\"},{\"captures\":{\"1\":{\"name\":\"support.function.git-rebase\"},\"2\":{\"name\":\"constant.sha.git-rebase\"},\"3\":{\"name\":\"meta.commit-message.git-rebase\"}},\"match\":\"^\\\\s*(pick|p|reword|r|edit|e|squash|s|fixup|f|drop|d)\\\\s+([0-9a-f]+)\\\\s+(.*)$\",\"name\":\"meta.commit-command.git-rebase\"},{\"captures\":{\"1\":{\"name\":\"support.function.git-rebase\"},\"2\":{\"patterns\":[{\"include\":\"source.shell\"}]}},\"match\":\"^\\\\s*(exec|x)\\\\s+(.*)$\",\"name\":\"meta.commit-command.git-rebase\"},{\"captures\":{\"1\":{\"name\":\"support.function.git-rebase\"}},\"match\":\"^\\\\s*(b(?:reak|))\\\\s*$\",\"name\":\"meta.commit-command.git-rebase\"}],\"scopeName\":\"text.git-rebase\",\"embeddedLangs\":[\"shellscript\"]}")), git_rebase_default = [...shellscript_default, lang];
3
+ export { git_rebase_default as default };
@@ -0,0 +1,2 @@
1
+ var gleam_default = [Object.freeze(JSON.parse("{\"displayName\":\"Gleam\",\"fileTypes\":[\"gleam\"],\"name\":\"gleam\",\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#keywords\"},{\"include\":\"#strings\"},{\"include\":\"#constant\"},{\"include\":\"#entity\"},{\"include\":\"#discards\"}],\"repository\":{\"binary_number\":{\"match\":\"\\\\b0[Bb][01_]*\\\\b\",\"name\":\"constant.numeric.binary.gleam\",\"patterns\":[]},\"comments\":{\"patterns\":[{\"match\":\"//.*\",\"name\":\"comment.line.gleam\"}]},\"constant\":{\"patterns\":[{\"include\":\"#binary_number\"},{\"include\":\"#octal_number\"},{\"include\":\"#hexadecimal_number\"},{\"include\":\"#decimal_number\"},{\"match\":\"\\\\p{upper}\\\\p{alnum}*\",\"name\":\"entity.name.type.gleam\"}]},\"decimal_number\":{\"match\":\"\\\\b([0-9][0-9_]*)(\\\\.([0-9_]*)?(e-?[0-9]+)?)?\\\\b\",\"name\":\"constant.numeric.decimal.gleam\",\"patterns\":[]},\"discards\":{\"match\":\"\\\\b_\\\\p{word}+{0,1}\\\\b\",\"name\":\"comment.unused.gleam\"},\"entity\":{\"patterns\":[{\"begin\":\"\\\\b(\\\\p{lower}\\\\p{word}*)\\\\b\\\\s*\\\\(\",\"captures\":{\"1\":{\"name\":\"entity.name.function.gleam\"}},\"end\":\"\\\\)\",\"patterns\":[{\"include\":\"$self\"}]},{\"match\":\"\\\\b(\\\\p{lower}\\\\p{word}*):\\\\s\",\"name\":\"variable.parameter.gleam\"},{\"match\":\"\\\\b(\\\\p{lower}\\\\p{word}*):\",\"name\":\"entity.name.namespace.gleam\"}]},\"hexadecimal_number\":{\"match\":\"\\\\b0[Xx][_\\\\h]+\\\\b\",\"name\":\"constant.numeric.hexadecimal.gleam\",\"patterns\":[]},\"keywords\":{\"patterns\":[{\"match\":\"\\\\b(as|use|case|if|fn|import|let|assert|pub|type|opaque|const|todo|panic|else|echo)\\\\b\",\"name\":\"keyword.control.gleam\"},{\"match\":\"(<-|->)\",\"name\":\"keyword.operator.arrow.gleam\"},{\"match\":\"\\\\|>\",\"name\":\"keyword.operator.pipe.gleam\"},{\"match\":\"\\\\.\\\\.\",\"name\":\"keyword.operator.splat.gleam\"},{\"match\":\"([!=]=)\",\"name\":\"keyword.operator.comparison.gleam\"},{\"match\":\"([<>]=?\\\\.)\",\"name\":\"keyword.operator.comparison.float.gleam\"},{\"match\":\"(<=|>=|[<>])\",\"name\":\"keyword.operator.comparison.int.gleam\"},{\"match\":\"(&&|\\\\|\\\\|)\",\"name\":\"keyword.operator.logical.gleam\"},{\"match\":\"<>\",\"name\":\"keyword.operator.string.gleam\"},{\"match\":\"\\\\|\",\"name\":\"keyword.operator.other.gleam\"},{\"match\":\"([-*+/]\\\\.)\",\"name\":\"keyword.operator.arithmetic.float.gleam\"},{\"match\":\"([-%*+/])\",\"name\":\"keyword.operator.arithmetic.int.gleam\"},{\"match\":\"=\",\"name\":\"keyword.operator.assignment.gleam\"}]},\"octal_number\":{\"match\":\"\\\\b0[Oo][0-7_]*\\\\b\",\"name\":\"constant.numeric.octal.gleam\",\"patterns\":[]},\"strings\":{\"begin\":\"\\\"\",\"end\":\"\\\"\",\"name\":\"string.quoted.double.gleam\",\"patterns\":[{\"match\":\"\\\\\\\\.\",\"name\":\"constant.character.escape.gleam\"}]}},\"scopeName\":\"source.gleam\"}"))];
2
+ export { gleam_default as default };
@@ -0,0 +1,12 @@
1
+ import javascript_default from "./javascript.js";
2
+ import css_default from "./css.js";
3
+ import html_default from "./html.js";
4
+ import typescript_default from "./typescript.js";
5
+ var lang = Object.freeze(JSON.parse("{\"displayName\":\"Glimmer JS\",\"injections\":{\"L:source.gjs -comment -(string -meta.embedded)\":{\"patterns\":[{\"include\":\"#main\"}]}},\"name\":\"glimmer-js\",\"patterns\":[{\"include\":\"#main\"},{\"include\":\"source.js\"}],\"repository\":{\"as-keyword\":{\"match\":\"\\\\s\\\\b(as)\\\\b(?=\\\\s\\\\|)\",\"name\":\"keyword.control\",\"patterns\":[]},\"as-params\":{\"begin\":\"(?<!\\\\|)(\\\\|)\",\"beginCaptures\":{\"1\":{\"name\":\"constant.other.symbol.begin.ember-handlebars\"}},\"end\":\"(\\\\|)(?!\\\\|)\",\"endCaptures\":{\"1\":{\"name\":\"constant.other.symbol.end.ember-handlebars\"}},\"name\":\"keyword.block-params.ember-handlebars\",\"patterns\":[{\"include\":\"#variable\"}]},\"attention\":{\"match\":\"@?(TODO|FIXME|CHANGED|XXX|IDEA|HACK|NOTE|REVIEW|NB|BUG|QUESTION|TEMP)\\\\b\",\"name\":\"storage.type.class.${1:/downcase}\",\"patterns\":[]},\"boolean\":{\"captures\":{\"0\":{\"name\":\"string.regexp\"},\"1\":{\"name\":\"string.regexp\"},\"2\":{\"name\":\"string.regexp\"}},\"match\":\"true|false|undefined|null\",\"patterns\":[]},\"component-tag\":{\"begin\":\"(</?)(@|this.)?([-$.0-:A-Z_a-z]+)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(@|this)\",\"name\":\"variable.language\"},{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]},\"3\":{\"name\":\"entity.name.type\",\"patterns\":[{\"include\":\"#glimmer-component-path\"},{\"match\":\"([$:@])\",\"name\":\"markup.bold\"}]}},\"end\":\"(/?)(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"punctuation.definition.tag\"}},\"name\":\"meta.tag.any.ember-handlebars\",\"patterns\":[{\"include\":\"#tag-like-content\"}]},\"digit\":{\"captures\":{\"0\":{\"name\":\"constant.numeric\"},\"1\":{\"name\":\"constant.numeric\"},\"2\":{\"name\":\"constant.numeric\"}},\"match\":\"\\\\d*(\\\\.)?\\\\d+\",\"patterns\":[]},\"entities\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.definition.entity.html.ember-handlebars\"},\"3\":{\"name\":\"punctuation.definition.entity.html.ember-handlebars\"}},\"match\":\"(&)([0-9A-Za-z]+|#[0-9]+|#x\\\\h+)(;)\",\"name\":\"constant.character.entity.html.ember-handlebars\"},{\"match\":\"&\",\"name\":\"invalid.illegal.bad-ampersand.html.ember-handlebars\"}]},\"glimmer-argument\":{\"captures\":{\"1\":{\"name\":\"entity.other.attribute-name.ember-handlebars.argument\",\"patterns\":[{\"match\":\"(@)\",\"name\":\"markup.italic\"}]},\"2\":{\"name\":\"punctuation.separator.key-value.html.ember-handlebars\"}},\"match\":\"\\\\s(@[-.0-:A-Z_a-z]+)(=)?\"},\"glimmer-as-stuff\":{\"patterns\":[{\"include\":\"#as-keyword\"},{\"include\":\"#as-params\"}]},\"glimmer-block\":{\"begin\":\"(\\\\{\\\\{~?)([#/])(([$\\\\--9@-Z_a-z]+))\",\"captures\":{\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"punctuation.definition.tag\"},\"3\":{\"name\":\"keyword.control\",\"patterns\":[{\"include\":\"#glimmer-component-path\"},{\"match\":\"(/)+\",\"name\":\"punctuation.definition.tag\"},{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]}},\"end\":\"(~?}})\",\"name\":\"entity.expression.ember-handlebars\",\"patterns\":[{\"include\":\"#glimmer-as-stuff\"},{\"include\":\"#glimmer-supexp-content\"}]},\"glimmer-bools\":{\"captures\":{\"0\":{\"name\":\"keyword.operator\"},\"1\":{\"name\":\"keyword.operator\"},\"2\":{\"name\":\"string.regexp\"},\"3\":{\"name\":\"string.regexp\"},\"4\":{\"name\":\"keyword.operator\"}},\"match\":\"(\\\\{\\\\{~?)(true|false|null|undefined|\\\\d*(\\\\.)?\\\\d+)(~?}})\",\"name\":\"entity.expression.ember-handlebars\"},\"glimmer-comment-block\":{\"begin\":\"\\\\{\\\\{!--\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.block.comment.glimmer\"}},\"end\":\"--}}\",\"name\":\"comment.block.glimmer\",\"patterns\":[{\"include\":\"#script\"},{\"include\":\"#attention\"}]},\"glimmer-comment-inline\":{\"begin\":\"\\\\{\\\\{!\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.block.comment.glimmer\"}},\"end\":\"}}\",\"name\":\"comment.inline.glimmer\",\"patterns\":[{\"include\":\"#script\"},{\"include\":\"#attention\"}]},\"glimmer-component-path\":{\"captures\":{\"1\":{\"name\":\"punctuation.definition.tag\"}},\"match\":\"(::|[$._])\"},\"glimmer-control-expression\":{\"begin\":\"(\\\\{\\\\{~?)(([-/-9A-Z_a-z]+)\\\\s)\",\"captures\":{\"1\":{\"name\":\"keyword.operator\"},\"2\":{\"name\":\"keyword.operator\"},\"3\":{\"name\":\"keyword.control\"}},\"end\":\"(~?}})\",\"name\":\"entity.expression.ember-handlebars\",\"patterns\":[{\"include\":\"#glimmer-supexp-content\"}]},\"glimmer-else-block\":{\"captures\":{\"0\":{\"name\":\"punctuation.definition.tag\"},\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"keyword.control\"},\"3\":{\"name\":\"keyword.control\",\"patterns\":[{\"include\":\"#glimmer-subexp\"},{\"include\":\"#string-single-quoted-handlebars\"},{\"include\":\"#string-double-quoted-handlebars\"},{\"include\":\"#boolean\"},{\"include\":\"#digit\"},{\"include\":\"#param\"},{\"include\":\"#glimmer-parameter-name\"},{\"include\":\"#glimmer-parameter-value\"}]},\"4\":{\"name\":\"punctuation.definition.tag\"}},\"match\":\"(\\\\{\\\\{~?)(else(?:\\\\s[a-z]+\\\\s|))([\\\\x08().0-9@-Za-z\\\\s]+)?(~?}})\",\"name\":\"entity.expression.ember-handlebars\"},\"glimmer-expression\":{\"begin\":\"(\\\\{\\\\{~?)(([-().0-9@-Z_a-z\\\\s]+))\",\"captures\":{\"1\":{\"name\":\"keyword.operator\"},\"2\":{\"name\":\"keyword.operator\"},\"3\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"\\\\(+\",\"name\":\"string.regexp\"},{\"match\":\"\\\\)+\",\"name\":\"string.regexp\"},{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"},{\"include\":\"#glimmer-supexp-content\"}]}},\"end\":\"(~?}})\",\"name\":\"entity.expression.ember-handlebars\",\"patterns\":[{\"include\":\"#glimmer-supexp-content\"}]},\"glimmer-expression-property\":{\"begin\":\"(\\\\{\\\\{~?)((@|this.)([-.0-9A-Z_a-z]+))\",\"captures\":{\"1\":{\"name\":\"keyword.operator\"},\"2\":{\"name\":\"keyword.operator\"},\"3\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(@|this)\",\"name\":\"variable.language\"},{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]},\"4\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]}},\"end\":\"(~?}})\",\"name\":\"entity.expression.ember-handlebars\",\"patterns\":[{\"include\":\"#glimmer-supexp-content\"}]},\"glimmer-parameter-name\":{\"captures\":{\"1\":{\"name\":\"variable.parameter.name.ember-handlebars\"},\"2\":{\"name\":\"punctuation.definition.expression.ember-handlebars\"}},\"match\":\"\\\\b([-0-9A-Z_a-z]+)(\\\\s?=)\",\"patterns\":[]},\"glimmer-parameter-value\":{\"captures\":{\"1\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]}},\"match\":\"\\\\b([-.0-:A-Z_a-z]+)\\\\b(?!=)\",\"patterns\":[]},\"glimmer-special-block\":{\"captures\":{\"0\":{\"name\":\"keyword.operator\"},\"1\":{\"name\":\"keyword.operator\"},\"2\":{\"name\":\"keyword.control\"},\"3\":{\"name\":\"keyword.operator\"}},\"match\":\"(\\\\{\\\\{~?)(yield|outlet)(~?}})\",\"name\":\"entity.expression.ember-handlebars\"},\"glimmer-subexp\":{\"begin\":\"(\\\\()([-.0-9@-Za-z]+)\",\"captures\":{\"1\":{\"name\":\"keyword.other\"},\"2\":{\"name\":\"keyword.control\"}},\"end\":\"(\\\\))\",\"name\":\"entity.subexpression.ember-handlebars\",\"patterns\":[{\"include\":\"#glimmer-supexp-content\"}]},\"glimmer-supexp-content\":{\"patterns\":[{\"include\":\"#glimmer-subexp\"},{\"include\":\"#string-single-quoted-handlebars\"},{\"include\":\"#string-double-quoted-handlebars\"},{\"include\":\"#boolean\"},{\"include\":\"#digit\"},{\"include\":\"#param\"},{\"include\":\"#glimmer-parameter-name\"},{\"include\":\"#glimmer-parameter-value\"}]},\"glimmer-unescaped-expression\":{\"begin\":\"\\\\{\\\\{\\\\{\",\"captures\":{\"0\":{\"name\":\"keyword.operator\"}},\"end\":\"}}}\",\"name\":\"entity.unescaped.expression.ember-handlebars\",\"patterns\":[{\"include\":\"#string-single-quoted-handlebars\"},{\"include\":\"#string-double-quoted-handlebars\"},{\"include\":\"#glimmer-subexp\"},{\"include\":\"#param\"}]},\"html-attribute\":{\"captures\":{\"1\":{\"name\":\"entity.other.attribute-name.ember-handlebars\",\"patterns\":[{\"match\":\"(\\\\.\\\\.\\\\.attributes)\",\"name\":\"markup.bold\"}]},\"2\":{\"name\":\"punctuation.separator.key-value.html.ember-handlebars\"}},\"match\":\"\\\\s([-.0-:A-Z_a-z]+)(=)?\"},\"html-comment\":{\"begin\":\"<!--\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.comment.html.ember-handlebars\"}},\"end\":\"--\\\\s*>\",\"name\":\"comment.block.html.ember-handlebars\",\"patterns\":[{\"include\":\"#attention\"},{\"match\":\"--\",\"name\":\"invalid.illegal.bad-comments-or-CDATA.html.ember-handlebars\"}]},\"html-tag\":{\"begin\":\"(</?)([-0-9a-z]+)(?![.:])\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"entity.name.tag.html.ember-handlebars\"}},\"end\":\"(/?)(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"punctuation.definition.tag\"}},\"name\":\"meta.tag.any.ember-handlebars\",\"patterns\":[{\"include\":\"#tag-like-content\"}]},\"main\":{\"patterns\":[{\"begin\":\"\\\\s*(<)(template)\\\\s*(>)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.html\"},\"2\":{\"name\":\"entity.name.tag.other.html\"},\"3\":{\"name\":\"punctuation.definition.tag.html\"}},\"end\":\"(</)(template)(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.html\"},\"2\":{\"name\":\"entity.name.tag.other.html\"},\"3\":{\"name\":\"punctuation.definition.tag.html\"}},\"name\":\"meta.js.embeddedTemplateWithoutArgs\",\"patterns\":[{\"include\":\"#style\"},{\"include\":\"#script\"},{\"include\":\"#glimmer-else-block\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-special-block\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#html-tag\"},{\"include\":\"#component-tag\"},{\"include\":\"#html-comment\"},{\"include\":\"#entities\"}]},{\"begin\":\"(<)(template)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.html\"},\"2\":{\"name\":\"entity.name.tag.other.html\"}},\"end\":\"(</)(template)(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.html\"},\"2\":{\"name\":\"entity.name.tag.other.html\"},\"3\":{\"name\":\"punctuation.definition.tag.html\"}},\"name\":\"meta.js.embeddedTemplateWithArgs\",\"patterns\":[{\"begin\":\"(?<=<template)\",\"end\":\"(?=>)\",\"patterns\":[{\"include\":\"#tag-like-content\"}]},{\"begin\":\"(>)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.js\"}},\"contentName\":\"meta.html.embedded.block\",\"end\":\"(?=</template>)\",\"patterns\":[{\"include\":\"#style\"},{\"include\":\"#script\"},{\"include\":\"#glimmer-else-block\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-special-block\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#html-tag\"},{\"include\":\"#component-tag\"},{\"include\":\"#html-comment\"},{\"include\":\"#entities\"}]}]},{\"begin\":\"\\\\b((?:\\\\w+\\\\.)*h(?:bs|tml)\\\\s*)(`)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.tagged-template.js\"},\"2\":{\"name\":\"punctuation.definition.string.template.begin.js\"}},\"contentName\":\"meta.embedded.block.html\",\"end\":\"(`)\",\"endCaptures\":{\"0\":{\"name\":\"string.js\"},\"1\":{\"name\":\"punctuation.definition.string.template.end.js\"}},\"patterns\":[{\"include\":\"source.ts#template-substitution-element\"},{\"include\":\"#style\"},{\"include\":\"#script\"},{\"include\":\"#glimmer-else-block\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-special-block\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#html-tag\"},{\"include\":\"#component-tag\"},{\"include\":\"#html-comment\"},{\"include\":\"#entities\"}]},{\"begin\":\"((createTemplate|hbs|html))(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.ts\"},\"2\":{\"name\":\"meta.function-call.ts\"},\"3\":{\"name\":\"meta.brace.round.ts\"}},\"contentName\":\"meta.embedded.block.html\",\"end\":\"(\\\\))\",\"endCaptures\":{\"1\":{\"name\":\"meta.brace.round.ts\"}},\"patterns\":[{\"begin\":\"(([\\\"'`]))\",\"beginCaptures\":{\"1\":{\"name\":\"string.template.ts\"},\"2\":{\"name\":\"punctuation.definition.string.template.begin.ts\"}},\"end\":\"(([\\\"'`]))\",\"endCaptures\":{\"1\":{\"name\":\"string.template.ts\"},\"2\":{\"name\":\"punctuation.definition.string.template.end.ts\"}},\"patterns\":[{\"include\":\"#style\"},{\"include\":\"#script\"},{\"include\":\"#glimmer-else-block\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-special-block\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#html-tag\"},{\"include\":\"#component-tag\"},{\"include\":\"#html-comment\"},{\"include\":\"#entities\"}]}]},{\"begin\":\"((precompileTemplate)\\\\s*)(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.ts\"},\"2\":{\"name\":\"meta.function-call.ts\"},\"3\":{\"name\":\"meta.brace.round.ts\"}},\"end\":\"(\\\\))\",\"endCaptures\":{\"1\":{\"name\":\"meta.brace.round.ts\"}},\"patterns\":[{\"begin\":\"(([\\\"'`]))\",\"beginCaptures\":{\"1\":{\"name\":\"string.template.ts\"},\"2\":{\"name\":\"punctuation.definition.string.template.begin.ts\"}},\"contentName\":\"meta.embedded.block.html\",\"end\":\"(([\\\"'`]))\",\"endCaptures\":{\"1\":{\"name\":\"string.template.ts\"},\"2\":{\"name\":\"punctuation.definition.string.template.end.ts\"}},\"patterns\":[{\"include\":\"#style\"},{\"include\":\"#script\"},{\"include\":\"#glimmer-else-block\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-special-block\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#html-tag\"},{\"include\":\"#component-tag\"},{\"include\":\"#html-comment\"},{\"include\":\"#entities\"}]},{\"include\":\"source.ts#object-literal\"},{\"include\":\"source.ts\"}]}]},\"param\":{\"captures\":{\"0\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(@|this)\",\"name\":\"variable.language\"},{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]},\"1\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]}},\"match\":\"(@|this.)([-.0-9A-Z_a-z]+)\",\"patterns\":[]},\"script\":{\"begin\":\"(^[\\\\t ]+)?(?=<(?i:script)\\\\b(?!-))\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.embedded.leading.html\"}},\"end\":\"(?!\\\\G)([\\\\t ]*$\\\\n?)?\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.embedded.trailing.html\"}},\"patterns\":[{\"begin\":\"(<)((?i:script))\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.start.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"entity.name.tag.html\"}},\"end\":\"(/)((?i:script))(>)\",\"endCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.end.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"entity.name.tag.html\"},\"3\":{\"name\":\"punctuation.definition.tag.end.html\"}},\"name\":\"meta.embedded.block.html\",\"patterns\":[{\"begin\":\"\\\\G\",\"end\":\"(?=/)\",\"patterns\":[{\"begin\":\"(>)\",\"beginCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.start.html\"},\"1\":{\"name\":\"punctuation.definition.tag.end.html\"}},\"end\":\"((<))(?=/(?i:script))\",\"endCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.end.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"source.js-ignored-vscode\"}},\"patterns\":[{\"begin\":\"\\\\G\",\"end\":\"(?=</(?i:script))\",\"name\":\"source.js\",\"patterns\":[{\"begin\":\"(^[\\\\t ]+)?(?=//)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.comment.leading.js\"}},\"end\":\"(?!\\\\G)\",\"patterns\":[{\"begin\":\"//\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.comment.js\"}},\"end\":\"(?=<\/script)|\\\\n\",\"name\":\"comment.line.double-slash.js\"}]},{\"begin\":\"/\\\\*\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.comment.js\"}},\"end\":\"\\\\*/|(?=<\/script)\",\"name\":\"comment.block.js\"},{\"include\":\"source.js\"}]}]},{\"begin\":\"(?i:(?=type\\\\s*=\\\\s*([\\\"']?)text/(x-handlebars|(x-(handlebars-)?|ng-)?template|html)[\\\"'>\\\\s]))\",\"end\":\"((<))(?=/(?i:script))\",\"endCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.end.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"text.html.basic\"}},\"patterns\":[{\"begin\":\"(?!\\\\G)\",\"end\":\"(?=</(?i:script))\",\"name\":\"text.html.basic\",\"patterns\":[{\"include\":\"text.html.basic\"}]}]},{\"begin\":\"(?=(?i:type))\",\"end\":\"(<)(?=/(?i:script))\",\"endCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.end.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"}}},{\"include\":\"#string-double-quoted-html\"},{\"include\":\"#string-single-quoted-html\"},{\"include\":\"#glimmer-argument\"},{\"include\":\"#html-attribute\"}]}]}]},\"string-double-quoted-handlebars\":{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.ember-handlebars\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.ember-handlebars\"}},\"name\":\"string.quoted.double.ember-handlebars\",\"patterns\":[{\"match\":\"\\\\\\\\\\\"\",\"name\":\"constant.character.escape.ember-handlebars\"}]},\"string-double-quoted-html\":{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.ember-handlebars\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.ember-handlebars\"}},\"name\":\"string.quoted.double.html.ember-handlebars\",\"patterns\":[{\"match\":\"\\\\\\\\\\\"\",\"name\":\"constant.character.escape.ember-handlebars\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"}]},\"string-single-quoted-handlebars\":{\"begin\":\"'\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.ember-handlebars\"}},\"end\":\"'\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.ember-handlebars\"}},\"name\":\"string.quoted.single.ember-handlebars\",\"patterns\":[{\"match\":\"\\\\\\\\'\",\"name\":\"constant.character.escape.ember-handlebars\"}]},\"string-single-quoted-html\":{\"begin\":\"'\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.ember-handlebars\"}},\"end\":\"'\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.ember-handlebars\"}},\"name\":\"string.quoted.single.html.ember-handlebars\",\"patterns\":[{\"match\":\"\\\\\\\\'\",\"name\":\"constant.character.escape.ember-handlebars\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"}]},\"style\":{\"begin\":\"(^[\\\\t ]+)?(?=<(?i:style)\\\\b(?!-))\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.embedded.leading.html\"}},\"end\":\"(?!\\\\G)([\\\\t ]*$\\\\n?)?\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.embedded.trailing.html\"}},\"patterns\":[{\"begin\":\"(?i)(<)(style)(?=\\\\s|/?>)\",\"beginCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.style.start.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"entity.name.tag.html\"}},\"end\":\"(?i)((<)/)(style)\\\\s*(>)\",\"endCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.style.end.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"source.css-ignored-vscode\"},\"3\":{\"name\":\"entity.name.tag.html\"},\"4\":{\"name\":\"punctuation.definition.tag.end.html\"}},\"name\":\"meta.embedded.block.html\",\"patterns\":[{\"begin\":\"\\\\G\",\"captures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html\"}},\"end\":\"(>)\",\"name\":\"meta.tag.metadata.style.start.html\",\"patterns\":[{\"include\":\"#glimmer-argument\"},{\"include\":\"#html-attribute\"}]},{\"begin\":\"(?!\\\\G)\",\"end\":\"(?=</(?i:style))\",\"name\":\"source.css\",\"patterns\":[{\"include\":\"source.css\"}]}]}]},\"tag-like-content\":{\"patterns\":[{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#boolean\"},{\"include\":\"#digit\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#string-double-quoted-html\"},{\"include\":\"#string-single-quoted-html\"},{\"include\":\"#glimmer-as-stuff\"},{\"include\":\"#glimmer-argument\"},{\"include\":\"#html-attribute\"}]},\"variable\":{\"match\":\"\\\\b([-0-9A-Z_a-z]+)\\\\b\",\"name\":\"support.function\",\"patterns\":[]}},\"scopeName\":\"source.gjs\",\"embeddedLangs\":[\"javascript\",\"typescript\",\"css\",\"html\"],\"aliases\":[\"gjs\"]}")), glimmer_js_default = [
6
+ ...javascript_default,
7
+ ...typescript_default,
8
+ ...css_default,
9
+ ...html_default,
10
+ lang
11
+ ];
12
+ export { glimmer_js_default as default };
@@ -0,0 +1,12 @@
1
+ import javascript_default from "./javascript.js";
2
+ import css_default from "./css.js";
3
+ import html_default from "./html.js";
4
+ import typescript_default from "./typescript.js";
5
+ var lang = Object.freeze(JSON.parse("{\"displayName\":\"Glimmer TS\",\"injections\":{\"L:source.gts -comment -(string -meta.embedded)\":{\"patterns\":[{\"include\":\"#main\"}]}},\"name\":\"glimmer-ts\",\"patterns\":[{\"include\":\"#main\"},{\"include\":\"source.ts\"}],\"repository\":{\"as-keyword\":{\"match\":\"\\\\s\\\\b(as)\\\\b(?=\\\\s\\\\|)\",\"name\":\"keyword.control\",\"patterns\":[]},\"as-params\":{\"begin\":\"(?<!\\\\|)(\\\\|)\",\"beginCaptures\":{\"1\":{\"name\":\"constant.other.symbol.begin.ember-handlebars\"}},\"end\":\"(\\\\|)(?!\\\\|)\",\"endCaptures\":{\"1\":{\"name\":\"constant.other.symbol.end.ember-handlebars\"}},\"name\":\"keyword.block-params.ember-handlebars\",\"patterns\":[{\"include\":\"#variable\"}]},\"attention\":{\"match\":\"@?(TODO|FIXME|CHANGED|XXX|IDEA|HACK|NOTE|REVIEW|NB|BUG|QUESTION|TEMP)\\\\b\",\"name\":\"storage.type.class.${1:/downcase}\",\"patterns\":[]},\"boolean\":{\"captures\":{\"0\":{\"name\":\"string.regexp\"},\"1\":{\"name\":\"string.regexp\"},\"2\":{\"name\":\"string.regexp\"}},\"match\":\"true|false|undefined|null\",\"patterns\":[]},\"component-tag\":{\"begin\":\"(</?)(@|this.)?([-$.0-:A-Z_a-z]+)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(@|this)\",\"name\":\"variable.language\"},{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]},\"3\":{\"name\":\"entity.name.type\",\"patterns\":[{\"include\":\"#glimmer-component-path\"},{\"match\":\"([$:@])\",\"name\":\"markup.bold\"}]}},\"end\":\"(/?)(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"punctuation.definition.tag\"}},\"name\":\"meta.tag.any.ember-handlebars\",\"patterns\":[{\"include\":\"#tag-like-content\"}]},\"digit\":{\"captures\":{\"0\":{\"name\":\"constant.numeric\"},\"1\":{\"name\":\"constant.numeric\"},\"2\":{\"name\":\"constant.numeric\"}},\"match\":\"\\\\d*(\\\\.)?\\\\d+\",\"patterns\":[]},\"entities\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.definition.entity.html.ember-handlebars\"},\"3\":{\"name\":\"punctuation.definition.entity.html.ember-handlebars\"}},\"match\":\"(&)([0-9A-Za-z]+|#[0-9]+|#x\\\\h+)(;)\",\"name\":\"constant.character.entity.html.ember-handlebars\"},{\"match\":\"&\",\"name\":\"invalid.illegal.bad-ampersand.html.ember-handlebars\"}]},\"glimmer-argument\":{\"captures\":{\"1\":{\"name\":\"entity.other.attribute-name.ember-handlebars.argument\",\"patterns\":[{\"match\":\"(@)\",\"name\":\"markup.italic\"}]},\"2\":{\"name\":\"punctuation.separator.key-value.html.ember-handlebars\"}},\"match\":\"\\\\s(@[-.0-:A-Z_a-z]+)(=)?\"},\"glimmer-as-stuff\":{\"patterns\":[{\"include\":\"#as-keyword\"},{\"include\":\"#as-params\"}]},\"glimmer-block\":{\"begin\":\"(\\\\{\\\\{~?)([#/])(([$\\\\--9@-Z_a-z]+))\",\"captures\":{\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"punctuation.definition.tag\"},\"3\":{\"name\":\"keyword.control\",\"patterns\":[{\"include\":\"#glimmer-component-path\"},{\"match\":\"(/)+\",\"name\":\"punctuation.definition.tag\"},{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]}},\"end\":\"(~?}})\",\"name\":\"entity.expression.ember-handlebars\",\"patterns\":[{\"include\":\"#glimmer-as-stuff\"},{\"include\":\"#glimmer-supexp-content\"}]},\"glimmer-bools\":{\"captures\":{\"0\":{\"name\":\"keyword.operator\"},\"1\":{\"name\":\"keyword.operator\"},\"2\":{\"name\":\"string.regexp\"},\"3\":{\"name\":\"string.regexp\"},\"4\":{\"name\":\"keyword.operator\"}},\"match\":\"(\\\\{\\\\{~?)(true|false|null|undefined|\\\\d*(\\\\.)?\\\\d+)(~?}})\",\"name\":\"entity.expression.ember-handlebars\"},\"glimmer-comment-block\":{\"begin\":\"\\\\{\\\\{!--\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.block.comment.glimmer\"}},\"end\":\"--}}\",\"name\":\"comment.block.glimmer\",\"patterns\":[{\"include\":\"#script\"},{\"include\":\"#attention\"}]},\"glimmer-comment-inline\":{\"begin\":\"\\\\{\\\\{!\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.block.comment.glimmer\"}},\"end\":\"}}\",\"name\":\"comment.inline.glimmer\",\"patterns\":[{\"include\":\"#script\"},{\"include\":\"#attention\"}]},\"glimmer-component-path\":{\"captures\":{\"1\":{\"name\":\"punctuation.definition.tag\"}},\"match\":\"(::|[$._])\"},\"glimmer-control-expression\":{\"begin\":\"(\\\\{\\\\{~?)(([-/-9A-Z_a-z]+)\\\\s)\",\"captures\":{\"1\":{\"name\":\"keyword.operator\"},\"2\":{\"name\":\"keyword.operator\"},\"3\":{\"name\":\"keyword.control\"}},\"end\":\"(~?}})\",\"name\":\"entity.expression.ember-handlebars\",\"patterns\":[{\"include\":\"#glimmer-supexp-content\"}]},\"glimmer-else-block\":{\"captures\":{\"0\":{\"name\":\"punctuation.definition.tag\"},\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"keyword.control\"},\"3\":{\"name\":\"keyword.control\",\"patterns\":[{\"include\":\"#glimmer-subexp\"},{\"include\":\"#string-single-quoted-handlebars\"},{\"include\":\"#string-double-quoted-handlebars\"},{\"include\":\"#boolean\"},{\"include\":\"#digit\"},{\"include\":\"#param\"},{\"include\":\"#glimmer-parameter-name\"},{\"include\":\"#glimmer-parameter-value\"}]},\"4\":{\"name\":\"punctuation.definition.tag\"}},\"match\":\"(\\\\{\\\\{~?)(else(?:\\\\s[a-z]+\\\\s|))([\\\\x08().0-9@-Za-z\\\\s]+)?(~?}})\",\"name\":\"entity.expression.ember-handlebars\"},\"glimmer-expression\":{\"begin\":\"(\\\\{\\\\{~?)(([-().0-9@-Z_a-z\\\\s]+))\",\"captures\":{\"1\":{\"name\":\"keyword.operator\"},\"2\":{\"name\":\"keyword.operator\"},\"3\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"\\\\(+\",\"name\":\"string.regexp\"},{\"match\":\"\\\\)+\",\"name\":\"string.regexp\"},{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"},{\"include\":\"#glimmer-supexp-content\"}]}},\"end\":\"(~?}})\",\"name\":\"entity.expression.ember-handlebars\",\"patterns\":[{\"include\":\"#glimmer-supexp-content\"}]},\"glimmer-expression-property\":{\"begin\":\"(\\\\{\\\\{~?)((@|this.)([-.0-9A-Z_a-z]+))\",\"captures\":{\"1\":{\"name\":\"keyword.operator\"},\"2\":{\"name\":\"keyword.operator\"},\"3\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(@|this)\",\"name\":\"variable.language\"},{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]},\"4\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]}},\"end\":\"(~?}})\",\"name\":\"entity.expression.ember-handlebars\",\"patterns\":[{\"include\":\"#glimmer-supexp-content\"}]},\"glimmer-parameter-name\":{\"captures\":{\"1\":{\"name\":\"variable.parameter.name.ember-handlebars\"},\"2\":{\"name\":\"punctuation.definition.expression.ember-handlebars\"}},\"match\":\"\\\\b([-0-9A-Z_a-z]+)(\\\\s?=)\",\"patterns\":[]},\"glimmer-parameter-value\":{\"captures\":{\"1\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]}},\"match\":\"\\\\b([-.0-:A-Z_a-z]+)\\\\b(?!=)\",\"patterns\":[]},\"glimmer-special-block\":{\"captures\":{\"0\":{\"name\":\"keyword.operator\"},\"1\":{\"name\":\"keyword.operator\"},\"2\":{\"name\":\"keyword.control\"},\"3\":{\"name\":\"keyword.operator\"}},\"match\":\"(\\\\{\\\\{~?)(yield|outlet)(~?}})\",\"name\":\"entity.expression.ember-handlebars\"},\"glimmer-subexp\":{\"begin\":\"(\\\\()([-.0-9@-Za-z]+)\",\"captures\":{\"1\":{\"name\":\"keyword.other\"},\"2\":{\"name\":\"keyword.control\"}},\"end\":\"(\\\\))\",\"name\":\"entity.subexpression.ember-handlebars\",\"patterns\":[{\"include\":\"#glimmer-supexp-content\"}]},\"glimmer-supexp-content\":{\"patterns\":[{\"include\":\"#glimmer-subexp\"},{\"include\":\"#string-single-quoted-handlebars\"},{\"include\":\"#string-double-quoted-handlebars\"},{\"include\":\"#boolean\"},{\"include\":\"#digit\"},{\"include\":\"#param\"},{\"include\":\"#glimmer-parameter-name\"},{\"include\":\"#glimmer-parameter-value\"}]},\"glimmer-unescaped-expression\":{\"begin\":\"\\\\{\\\\{\\\\{\",\"captures\":{\"0\":{\"name\":\"keyword.operator\"}},\"end\":\"}}}\",\"name\":\"entity.unescaped.expression.ember-handlebars\",\"patterns\":[{\"include\":\"#string-single-quoted-handlebars\"},{\"include\":\"#string-double-quoted-handlebars\"},{\"include\":\"#glimmer-subexp\"},{\"include\":\"#param\"}]},\"html-attribute\":{\"captures\":{\"1\":{\"name\":\"entity.other.attribute-name.ember-handlebars\",\"patterns\":[{\"match\":\"(\\\\.\\\\.\\\\.attributes)\",\"name\":\"markup.bold\"}]},\"2\":{\"name\":\"punctuation.separator.key-value.html.ember-handlebars\"}},\"match\":\"\\\\s([-.0-:A-Z_a-z]+)(=)?\"},\"html-comment\":{\"begin\":\"<!--\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.comment.html.ember-handlebars\"}},\"end\":\"--\\\\s*>\",\"name\":\"comment.block.html.ember-handlebars\",\"patterns\":[{\"include\":\"#attention\"},{\"match\":\"--\",\"name\":\"invalid.illegal.bad-comments-or-CDATA.html.ember-handlebars\"}]},\"html-tag\":{\"begin\":\"(</?)([-0-9a-z]+)(?![.:])\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"entity.name.tag.html.ember-handlebars\"}},\"end\":\"(/?)(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag\"},\"2\":{\"name\":\"punctuation.definition.tag\"}},\"name\":\"meta.tag.any.ember-handlebars\",\"patterns\":[{\"include\":\"#tag-like-content\"}]},\"main\":{\"patterns\":[{\"begin\":\"\\\\s*(<)(template)\\\\s*(>)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.html\"},\"2\":{\"name\":\"entity.name.tag.other.html\"},\"3\":{\"name\":\"punctuation.definition.tag.html\"}},\"end\":\"(</)(template)(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.html\"},\"2\":{\"name\":\"entity.name.tag.other.html\"},\"3\":{\"name\":\"punctuation.definition.tag.html\"}},\"name\":\"meta.js.embeddedTemplateWithoutArgs\",\"patterns\":[{\"include\":\"#style\"},{\"include\":\"#script\"},{\"include\":\"#glimmer-else-block\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-special-block\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#html-tag\"},{\"include\":\"#component-tag\"},{\"include\":\"#html-comment\"},{\"include\":\"#entities\"}]},{\"begin\":\"(<)(template)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.html\"},\"2\":{\"name\":\"entity.name.tag.other.html\"}},\"end\":\"(</)(template)(>)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.html\"},\"2\":{\"name\":\"entity.name.tag.other.html\"},\"3\":{\"name\":\"punctuation.definition.tag.html\"}},\"name\":\"meta.js.embeddedTemplateWithArgs\",\"patterns\":[{\"begin\":\"(?<=<template)\",\"end\":\"(?=>)\",\"patterns\":[{\"include\":\"#tag-like-content\"}]},{\"begin\":\"(>)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.js\"}},\"contentName\":\"meta.html.embedded.block\",\"end\":\"(?=</template>)\",\"patterns\":[{\"include\":\"#style\"},{\"include\":\"#script\"},{\"include\":\"#glimmer-else-block\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-special-block\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#html-tag\"},{\"include\":\"#component-tag\"},{\"include\":\"#html-comment\"},{\"include\":\"#entities\"}]}]},{\"begin\":\"\\\\b((?:\\\\w+\\\\.)*h(?:bs|tml)\\\\s*)(`)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.tagged-template.js\"},\"2\":{\"name\":\"punctuation.definition.string.template.begin.js\"}},\"contentName\":\"meta.embedded.block.html\",\"end\":\"(`)\",\"endCaptures\":{\"0\":{\"name\":\"string.js\"},\"1\":{\"name\":\"punctuation.definition.string.template.end.js\"}},\"patterns\":[{\"include\":\"source.ts#template-substitution-element\"},{\"include\":\"#style\"},{\"include\":\"#script\"},{\"include\":\"#glimmer-else-block\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-special-block\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#html-tag\"},{\"include\":\"#component-tag\"},{\"include\":\"#html-comment\"},{\"include\":\"#entities\"}]},{\"begin\":\"((createTemplate|hbs|html))(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.ts\"},\"2\":{\"name\":\"meta.function-call.ts\"},\"3\":{\"name\":\"meta.brace.round.ts\"}},\"contentName\":\"meta.embedded.block.html\",\"end\":\"(\\\\))\",\"endCaptures\":{\"1\":{\"name\":\"meta.brace.round.ts\"}},\"patterns\":[{\"begin\":\"(([\\\"'`]))\",\"beginCaptures\":{\"1\":{\"name\":\"string.template.ts\"},\"2\":{\"name\":\"punctuation.definition.string.template.begin.ts\"}},\"end\":\"(([\\\"'`]))\",\"endCaptures\":{\"1\":{\"name\":\"string.template.ts\"},\"2\":{\"name\":\"punctuation.definition.string.template.end.ts\"}},\"patterns\":[{\"include\":\"#style\"},{\"include\":\"#script\"},{\"include\":\"#glimmer-else-block\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-special-block\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#html-tag\"},{\"include\":\"#component-tag\"},{\"include\":\"#html-comment\"},{\"include\":\"#entities\"}]}]},{\"begin\":\"((precompileTemplate)\\\\s*)(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.ts\"},\"2\":{\"name\":\"meta.function-call.ts\"},\"3\":{\"name\":\"meta.brace.round.ts\"}},\"end\":\"(\\\\))\",\"endCaptures\":{\"1\":{\"name\":\"meta.brace.round.ts\"}},\"patterns\":[{\"begin\":\"(([\\\"'`]))\",\"beginCaptures\":{\"1\":{\"name\":\"string.template.ts\"},\"2\":{\"name\":\"punctuation.definition.string.template.begin.ts\"}},\"contentName\":\"meta.embedded.block.html\",\"end\":\"(([\\\"'`]))\",\"endCaptures\":{\"1\":{\"name\":\"string.template.ts\"},\"2\":{\"name\":\"punctuation.definition.string.template.end.ts\"}},\"patterns\":[{\"include\":\"#style\"},{\"include\":\"#script\"},{\"include\":\"#glimmer-else-block\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-special-block\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#html-tag\"},{\"include\":\"#component-tag\"},{\"include\":\"#html-comment\"},{\"include\":\"#entities\"}]},{\"include\":\"source.ts#object-literal\"},{\"include\":\"source.ts\"}]}]},\"param\":{\"captures\":{\"0\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(@|this)\",\"name\":\"variable.language\"},{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]},\"1\":{\"name\":\"support.function\",\"patterns\":[{\"match\":\"(\\\\.)+\",\"name\":\"punctuation.definition.tag\"}]}},\"match\":\"(@|this.)([-.0-9A-Z_a-z]+)\",\"patterns\":[]},\"script\":{\"begin\":\"(^[\\\\t ]+)?(?=<(?i:script)\\\\b(?!-))\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.embedded.leading.html\"}},\"end\":\"(?!\\\\G)([\\\\t ]*$\\\\n?)?\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.embedded.trailing.html\"}},\"patterns\":[{\"begin\":\"(<)((?i:script))\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.start.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"entity.name.tag.html\"}},\"end\":\"(/)((?i:script))(>)\",\"endCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.end.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"entity.name.tag.html\"},\"3\":{\"name\":\"punctuation.definition.tag.end.html\"}},\"name\":\"meta.embedded.block.html\",\"patterns\":[{\"begin\":\"\\\\G\",\"end\":\"(?=/)\",\"patterns\":[{\"begin\":\"(>)\",\"beginCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.start.html\"},\"1\":{\"name\":\"punctuation.definition.tag.end.html\"}},\"end\":\"((<))(?=/(?i:script))\",\"endCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.end.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"source.js-ignored-vscode\"}},\"patterns\":[{\"begin\":\"\\\\G\",\"end\":\"(?=</(?i:script))\",\"name\":\"source.js\",\"patterns\":[{\"begin\":\"(^[\\\\t ]+)?(?=//)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.comment.leading.js\"}},\"end\":\"(?!\\\\G)\",\"patterns\":[{\"begin\":\"//\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.comment.js\"}},\"end\":\"(?=<\/script)|\\\\n\",\"name\":\"comment.line.double-slash.js\"}]},{\"begin\":\"/\\\\*\",\"captures\":{\"0\":{\"name\":\"punctuation.definition.comment.js\"}},\"end\":\"\\\\*/|(?=<\/script)\",\"name\":\"comment.block.js\"},{\"include\":\"source.js\"}]}]},{\"begin\":\"(?i:(?=type\\\\s*=\\\\s*([\\\"']?)text/(x-handlebars|(x-(handlebars-)?|ng-)?template|html)[\\\"'>\\\\s]))\",\"end\":\"((<))(?=/(?i:script))\",\"endCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.end.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"text.html.basic\"}},\"patterns\":[{\"begin\":\"(?!\\\\G)\",\"end\":\"(?=</(?i:script))\",\"name\":\"text.html.basic\",\"patterns\":[{\"include\":\"text.html.basic\"}]}]},{\"begin\":\"(?=(?i:type))\",\"end\":\"(<)(?=/(?i:script))\",\"endCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.script.end.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"}}},{\"include\":\"#string-double-quoted-html\"},{\"include\":\"#string-single-quoted-html\"},{\"include\":\"#glimmer-argument\"},{\"include\":\"#html-attribute\"}]}]}]},\"string-double-quoted-handlebars\":{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.ember-handlebars\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.ember-handlebars\"}},\"name\":\"string.quoted.double.ember-handlebars\",\"patterns\":[{\"match\":\"\\\\\\\\\\\"\",\"name\":\"constant.character.escape.ember-handlebars\"}]},\"string-double-quoted-html\":{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.ember-handlebars\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.ember-handlebars\"}},\"name\":\"string.quoted.double.html.ember-handlebars\",\"patterns\":[{\"match\":\"\\\\\\\\\\\"\",\"name\":\"constant.character.escape.ember-handlebars\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"}]},\"string-single-quoted-handlebars\":{\"begin\":\"'\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.ember-handlebars\"}},\"end\":\"'\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.ember-handlebars\"}},\"name\":\"string.quoted.single.ember-handlebars\",\"patterns\":[{\"match\":\"\\\\\\\\'\",\"name\":\"constant.character.escape.ember-handlebars\"}]},\"string-single-quoted-html\":{\"begin\":\"'\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.ember-handlebars\"}},\"end\":\"'\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.ember-handlebars\"}},\"name\":\"string.quoted.single.html.ember-handlebars\",\"patterns\":[{\"match\":\"\\\\\\\\'\",\"name\":\"constant.character.escape.ember-handlebars\"},{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"}]},\"style\":{\"begin\":\"(^[\\\\t ]+)?(?=<(?i:style)\\\\b(?!-))\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.embedded.leading.html\"}},\"end\":\"(?!\\\\G)([\\\\t ]*$\\\\n?)?\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.whitespace.embedded.trailing.html\"}},\"patterns\":[{\"begin\":\"(?i)(<)(style)(?=\\\\s|/?>)\",\"beginCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.style.start.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"entity.name.tag.html\"}},\"end\":\"(?i)((<)/)(style)\\\\s*(>)\",\"endCaptures\":{\"0\":{\"name\":\"meta.tag.metadata.style.end.html\"},\"1\":{\"name\":\"punctuation.definition.tag.begin.html\"},\"2\":{\"name\":\"source.css-ignored-vscode\"},\"3\":{\"name\":\"entity.name.tag.html\"},\"4\":{\"name\":\"punctuation.definition.tag.end.html\"}},\"name\":\"meta.embedded.block.html\",\"patterns\":[{\"begin\":\"\\\\G\",\"captures\":{\"1\":{\"name\":\"punctuation.definition.tag.end.html\"}},\"end\":\"(>)\",\"name\":\"meta.tag.metadata.style.start.html\",\"patterns\":[{\"include\":\"#glimmer-argument\"},{\"include\":\"#html-attribute\"}]},{\"begin\":\"(?!\\\\G)\",\"end\":\"(?=</(?i:style))\",\"name\":\"source.css\",\"patterns\":[{\"include\":\"source.css\"}]}]}]},\"tag-like-content\":{\"patterns\":[{\"include\":\"#glimmer-bools\"},{\"include\":\"#glimmer-unescaped-expression\"},{\"include\":\"#glimmer-comment-block\"},{\"include\":\"#glimmer-comment-inline\"},{\"include\":\"#glimmer-expression-property\"},{\"include\":\"#boolean\"},{\"include\":\"#digit\"},{\"include\":\"#glimmer-control-expression\"},{\"include\":\"#glimmer-expression\"},{\"include\":\"#glimmer-block\"},{\"include\":\"#string-double-quoted-html\"},{\"include\":\"#string-single-quoted-html\"},{\"include\":\"#glimmer-as-stuff\"},{\"include\":\"#glimmer-argument\"},{\"include\":\"#html-attribute\"}]},\"variable\":{\"match\":\"\\\\b([-0-9A-Z_a-z]+)\\\\b\",\"name\":\"support.function\",\"patterns\":[]}},\"scopeName\":\"source.gts\",\"embeddedLangs\":[\"typescript\",\"css\",\"javascript\",\"html\"],\"aliases\":[\"gts\"]}")), glimmer_ts_default = [
6
+ ...typescript_default,
7
+ ...css_default,
8
+ ...javascript_default,
9
+ ...html_default,
10
+ lang
11
+ ];
12
+ export { glimmer_ts_default as default };
@@ -0,0 +1,3 @@
1
+ import c_default from "./c.js";
2
+ var lang = Object.freeze(JSON.parse("{\"displayName\":\"GLSL\",\"fileTypes\":[\"vs\",\"fs\",\"gs\",\"vsh\",\"fsh\",\"gsh\",\"vshader\",\"fshader\",\"gshader\",\"vert\",\"frag\",\"geom\",\"f.glsl\",\"v.glsl\",\"g.glsl\"],\"foldingStartMarker\":\"/\\\\*\\\\*|\\\\{\\\\s*$\",\"foldingStopMarker\":\"\\\\*\\\\*/|^\\\\s*}\",\"name\":\"glsl\",\"patterns\":[{\"match\":\"\\\\b(break|case|continue|default|discard|do|else|for|if|return|switch|while)\\\\b\",\"name\":\"keyword.control.glsl\"},{\"match\":\"\\\\b(void|bool|int|uint|float|vec2|vec3|vec4|bvec2|bvec3|bvec4|ivec2|ivec3|uvec2|uvec3|mat2|mat3|mat4|mat2x2|mat2x3|mat2x4|mat3x2|mat3x3|mat3x4|mat4x2|mat4x3|mat4x4|sampler[123|]D|samplerCube|sampler2DRect|sampler[12|]DShadow|sampler2DRectShadow|sampler[12|]DArray|sampler[12|]DArrayShadow|samplerBuffer|sampler2DMS|sampler2DMSArray|struct|isampler[123|]D|isamplerCube|isampler2DRect|isampler[12|]DArray|isamplerBuffer|isampler2DMS|isampler2DMSArray|usampler[123|]D|usamplerCube|usampler2DRect|usampler[12|]DArray|usamplerBuffer|usampler2DMS|usampler2DMSArray)\\\\b\",\"name\":\"storage.type.glsl\"},{\"match\":\"\\\\b(attribute|centroid|const|flat|in|inout|invariant|noperspective|out|smooth|uniform|varying)\\\\b\",\"name\":\"storage.modifier.glsl\"},{\"match\":\"\\\\b(gl_(?:BackColor|BackLightModelProduct|BackLightProduct|BackMaterial|BackSecondaryColor|ClipDistance|ClipPlane|ClipVertex|Color|DepthRange|DepthRangeParameters|EyePlaneQ|EyePlaneR|EyePlaneS|EyePlaneT|Fog|FogCoord|FogFragCoord|FogParameters|FragColor|FragCoord|FragDat|FragDept|FrontColor|FrontFacing|FrontLightModelProduct|FrontLightProduct|FrontMaterial|FrontSecondaryColor|InstanceID|Layer|LightModel|LightModelParameters|LightModelProducts|LightProducts|LightSource|LightSourceParameters|MaterialParameters|ModelViewMatrix|ModelViewMatrixInverse|ModelViewMatrixInverseTranspose|ModelViewMatrixTranspose|ModelViewProjectionMatrix|ModelViewProjectionMatrixInverse|ModelViewProjectionMatrixInverseTranspose|ModelViewProjectionMatrixTranspose|MultiTexCoord[0-7]|Normal|NormalMatrix|NormalScale|ObjectPlaneQ|ObjectPlaneR|ObjectPlaneS|ObjectPlaneT|Point|PointCoord|PointParameters|PointSize|Position|PrimitiveIDIn|ProjectionMatrix|ProjectionMatrixInverse|ProjectionMatrixInverseTranspose|ProjectionMatrixTranspose|SecondaryColor|TexCoord|TextureEnvColor|TextureMatrix|TextureMatrixInverse|TextureMatrixInverseTranspose|TextureMatrixTranspose|Vertex|VertexIDh))\\\\b\",\"name\":\"support.variable.glsl\"},{\"match\":\"\\\\b(gl_Max(?:ClipPlane|CombinedTextureImageUnit|DrawBuffer|FragmentUniformComponent|Light|TextureCoord|TextureImageUnit|TextureUnit|VaryingFloat|VertexAttrib|VertexTextureImageUnit|VertexUniformComponent)s)\\\\b\",\"name\":\"support.constant.glsl\"},{\"match\":\"\\\\b(abs|acos|all|any|asin|atan|ceil|clamp|cos|cross|degrees|dFdx|dFdy|distance|dot|equal|exp2??|faceforward|floor|fract|ftransform|fwidth|greaterThan|greaterThanEqual|inversesqrt|length|lessThan|lessThanEqual|log2??|matrixCompMult|max|min|mix|mod|noise[1-4]|normalize|not|notEqual|outerProduct|pow|radians|reflect|refract|shadow1D|shadow1DLod|shadow1DProj|shadow1DProjLod|shadow2D|shadow2DLod|shadow2DProj|shadow2DProjLod|sign|sin|smoothstep|sqrt|step|tan|texture1D|texture1DLod|texture1DProj|texture1DProjLod|texture2D|texture2DLod|texture2DProj|texture2DProjLod|texture3D|texture3DLod|texture3DProj|texture3DProjLod|textureCube|textureCubeLod|transpose)\\\\b\",\"name\":\"support.function.glsl\"},{\"match\":\"\\\\b(asm|double|enum|extern|goto|inline|long|short|sizeof|static|typedef|union|unsigned|volatile)\\\\b\",\"name\":\"invalid.illegal.glsl\"},{\"include\":\"source.c\"}],\"scopeName\":\"source.glsl\",\"embeddedLangs\":[\"c\"]}")), glsl_default = [...c_default, lang];
3
+ export { glsl_default as default };
@@ -0,0 +1,2 @@
1
+ var gn_default = [Object.freeze(JSON.parse("{\"displayName\":\"GN\",\"name\":\"gn\",\"patterns\":[{\"include\":\"#expression\"}],\"repository\":{\"boolean\":{\"match\":\"\\\\b(true|false)\\\\b\",\"name\":\"constant.language.boolean.gn\"},\"builtins\":{\"patterns\":[{\"match\":\"\\\\b(action|action_foreach|bundle_data|copy|create_bundle|executable|generated_file|group|loadable_module|rust_library|rust_proc_macro|shared_library|source_set|static_library|target)\\\\b\",\"name\":\"support.function.gn\"},{\"match\":\"\\\\b(assert|config|declare_args|defined|exec_script|filter_exclude|filter_include|filter_labels_exclude|filter_labels_include|foreach|forward_variables_from|get_label_info|get_path_info|get_target_outputs|getenv|import|label_matches|not_needed|pool|print|print_stack_trace|process_file_template|read_file|rebase_path|set_default_toolchain|set_defaults|split_list|string_join|string_replace|string_split|template|tool|toolchain|write_file)\\\\b\",\"name\":\"support.function.gn\"},{\"match\":\"\\\\b(current_cpu|current_os|current_toolchain|default_toolchain|gn_version|host_cpu|host_os|invoker|python_path|root_build_dir|root_gen_dir|root_out_dir|target_cpu|target_gen_dir|target_name|target_os|target_out_dir)\\\\b\",\"name\":\"variable.language.gn\"},{\"match\":\"\\\\b(aliased_deps|all_dependent_configs|allow_circular_includes_from|arflags|args|asmflags|assert_no_deps|bridge_header|bundle_contents_dir|bundle_deps_filter|bundle_executable_dir|bundle_resources_dir|bundle_root_dir|cflags|cflags_cc??|cflags_objcc??|check_includes|code_signing_args|code_signing_outputs|code_signing_script|code_signing_sources|complete_static_lib|configs|contents|crate_name|crate_root|crate_type|data|data_deps|data_keys|defines|depfile|deps|externs|framework_dirs|frameworks|friend|gen_deps|include_dirs|inputs|ldflags|lib_dirs|libs|metadata|mnemonic|module_name|output_conversion|output_dir|output_extension|output_name|output_prefix_override|outputs|partial_info_plist|pool|post_processing_args|post_processing_outputs|post_processing_script|post_processing_sources|precompiled_header|precompiled_header_type|precompiled_source|product_type|public|public_configs|public_deps|rebase|response_file_contents|rustflags|script|sources|swiftflags|testonly|transparent|visibility|walk_keys|weak_frameworks|write_runtime_deps|xcasset_compiler_flags|xcode_extra_attributes|xcode_test_application_name)\\\\b\",\"name\":\"variable.language.gn\"}]},\"call\":{\"begin\":\"\\\\b([A-Z_a-z][0-9A-Z_a-z]*)\\\\s*\\\\(\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.gn\"}},\"end\":\"\\\\)\",\"patterns\":[{\"include\":\"#expression\"}]},\"comment\":{\"begin\":\"#\",\"end\":\"$\",\"name\":\"comment.line.number-sign.gn\"},\"expression\":{\"patterns\":[{\"include\":\"#keywords\"},{\"include\":\"#builtins\"},{\"include\":\"#call\"},{\"include\":\"#literals\"},{\"include\":\"#identifier\"},{\"include\":\"#operators\"},{\"include\":\"#comment\"}]},\"identifier\":{\"match\":\"\\\\b[A-Z_a-z][0-9A-Z_a-z]*\\\\b\",\"name\":\"variable.general.gn\"},\"keywords\":{\"match\":\"\\\\b(if|else)\\\\b\",\"name\":\"keyword.control.if.gn\"},\"literals\":{\"patterns\":[{\"include\":\"#string\"},{\"include\":\"#number\"},{\"include\":\"#boolean\"}]},\"number\":{\"match\":\"\\\\b-?\\\\d+\\\\b\",\"name\":\"constant.numeric.gn\"},\"operators\":{\"match\":\"\\\\b(\\\\+=??|==|!=|-=??|<=??|[!=>]|>=|&&|\\\\|\\\\|\\\\.)\\\\b\",\"name\":\"keyword.operator.gn\"},\"string\":{\"begin\":\"\\\"\",\"end\":\"\\\"\",\"name\":\"string.quoted.double.gn\",\"patterns\":[{\"match\":\"\\\\\\\\[\\\"$\\\\\\\\]\",\"name\":\"constant.character.escape.gn\"},{\"match\":\"\\\\$0x\\\\h\\\\h\",\"name\":\"constant.character.hex.gn\"},{\"begin\":\"\\\\$\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.template-expression.begin.gn\"}},\"contentName\":\"meta.embedded.substitution.gn\",\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.template-expression.end.gn\"}},\"patterns\":[{\"include\":\"#expression\"}]},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.template-expression.begin.gn\"},\"2\":{\"name\":\"meta.embedded.substitution.gn variable.general.gn\"}},\"match\":\"(\\\\$)([A-Z_a-z][0-9A-Z_a-z]*)\"}]}},\"scopeName\":\"source.gn\"}"))];
2
+ export { gn_default as default };
@@ -0,0 +1,2 @@
1
+ var gnuplot_default = [Object.freeze(JSON.parse("{\"displayName\":\"Gnuplot\",\"fileTypes\":[\"gp\",\"plt\",\"plot\",\"gnuplot\"],\"name\":\"gnuplot\",\"patterns\":[{\"match\":\"(\\\\\\\\(?!\\\\n).*)\",\"name\":\"invalid.illegal.backslash.gnuplot\"},{\"match\":\"(;)\",\"name\":\"punctuation.separator.statement.gnuplot\"},{\"include\":\"#LineComment\"},{\"include\":\"#DataBlock\"},{\"include\":\"#MacroExpansion\"},{\"include\":\"#VariableDecl\"},{\"include\":\"#ArrayDecl\"},{\"include\":\"#FunctionDecl\"},{\"include\":\"#ShellCommand\"},{\"include\":\"#Command\"}],\"repository\":{\"ArrayDecl\":{\"begin\":\"\\\\b(array)\\\\s+([A-Z_a-z]\\\\w*)?\",\"beginCaptures\":{\"1\":{\"name\":\"support.type.array.gnuplot\"},\"2\":{\"name\":\"entity.name.variable.gnuplot\",\"patterns\":[{\"include\":\"#InvalidVariableDecl\"},{\"include\":\"#BuiltinVariable\"}]}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"name\":\"meta.variable.gnuplot\",\"patterns\":[{\"include\":\"#Expression\"}]},\"BuiltinFunction\":{\"patterns\":[{\"match\":\"\\\\bdefined\\\\b\",\"name\":\"invalid.deprecated.function.gnuplot\"},{\"match\":\"\\\\b(?:abs|acosh??|airy|arg|asinh??|atan2??|atanh|EllipticK|EllipticE|EllipticPi|besj0|besj1|besy0|besy1|ceil|cosh??|erfc??|exp|expint|floor|gamma|ibeta|inverf|igamma|imag|invnorm|int|lambertw|lgamma|log|log10|norm|rand|real|sgn|sinh??|sqrt|tanh??|voigt|cerf|cdawson|faddeeva|erfi|VP)\\\\b\",\"name\":\"support.function.math.gnuplot\"},{\"match\":\"\\\\b(?:gprintf|sprintf|strlen|strstrt|substr|strftime|strptime|system|words??)\\\\b\",\"name\":\"support.function.string.gnuplot\"},{\"match\":\"\\\\b(?:column|columnhead|exists|hsv2rgb|stringcolumn|timecolumn|tm_hour|tm_mday|tm_min|tm_mon|tm_sec|tm_wday|tm_yday|tm_year|time|valid|value)\\\\b\",\"name\":\"support.function.other.gnuplot\"}]},\"BuiltinOperator\":{\"patterns\":[{\"match\":\"(&&|\\\\|\\\\|)\",\"name\":\"keyword.operator.logical.gnuplot\"},{\"match\":\"(<<|>>|[\\\\&^|])\",\"name\":\"keyword.operator.bitwise.gnuplot\"},{\"match\":\"(==|!=|<=?|>=?)\",\"name\":\"keyword.operator.comparison.gnuplot\"},{\"match\":\"(=)\",\"name\":\"keyword.operator.assignment.gnuplot\"},{\"match\":\"([-!+~])\",\"name\":\"keyword.operator.arithmetic.gnuplot\"},{\"match\":\"(\\\\*\\\\*|[-%*+/])\",\"name\":\"keyword.operator.arithmetic.gnuplot\"},{\"captures\":{\"2\":{\"name\":\"keyword.operator.word.gnuplot\"}},\"match\":\"(\\\\.|\\\\b(eq|ne)\\\\b)\",\"name\":\"keyword.operator.strings.gnuplot\"}]},\"BuiltinVariable\":{\"patterns\":[{\"match\":\"\\\\bFIT_(?:LIMIT|MAXITER|START_LAMBDA|LAMBDA_FACTOR|SKIP|INDEX)\\\\b\",\"name\":\"invalid.deprecated.variable.gnuplot\"},{\"match\":\"\\\\b(GPVAL_\\\\w*|MOUSE_\\\\w*)\\\\b\",\"name\":\"support.constant.gnuplot\"},{\"match\":\"\\\\b(ARG[0-9C]|GPFUN_\\\\w*|FIT_\\\\w*|STATS_\\\\w*|pi|NaN)\\\\b\",\"name\":\"support.variable.gnuplot\"}]},\"ColumnIndexLiteral\":{\"match\":\"(\\\\$[0-9]+)\\\\b\",\"name\":\"support.constant.columnindex.gnuplot\"},\"Command\":{\"patterns\":[{\"begin\":\"\\\\bupdate\\\\b\",\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"name\":\"invalid.deprecated.command.gnuplot\"},{\"begin\":\"\\\\b(?:break|clear|continue|pwd|refresh|replot|reread|shell)\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.other.command.gnuplot\"}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"include\":\"#InvalidWord\"}]},{\"begin\":\"\\\\b(?:cd|call|eval|exit|help|history|load|lower|pause|print|printerr|quit|raise|save|stats|system|test|toggle)\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.other.command.gnuplot\"}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"include\":\"#Expression\"}]},{\"begin\":\"\\\\b(import)\\\\s(.+)\\\\s(from)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.import.gnuplot\"},\"2\":{\"patterns\":[{\"include\":\"#FunctionDecl\"}]},\"3\":{\"name\":\"keyword.control.import.gnuplot\"}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"include\":\"#SingleQuotedStringLiteral\"},{\"include\":\"#DoubleQuotedStringLiteral\"},{\"include\":\"#InvalidWord\"}]},{\"begin\":\"\\\\b(reset)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.command.gnuplot\"}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"match\":\"\\\\b(bind|error(state)?|session)\\\\b\",\"name\":\"support.class.reset.gnuplot\"},{\"include\":\"#InvalidWord\"}]},{\"begin\":\"\\\\b(undefine)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.command.gnuplot\"}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"include\":\"#BuiltinVariable\"},{\"include\":\"#BuiltinFunction\"},{\"match\":\"(?<=\\\\s)(\\\\$?[A-Z_a-z]\\\\w*\\\\*?)(?=\\\\s)\",\"name\":\"source.gnuplot\"},{\"include\":\"#InvalidWord\"}]},{\"begin\":\"\\\\b(if|while)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.conditional.gnuplot\"}},\"end\":\"(?=([#{]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"include\":\"#Expression\"}]},{\"begin\":\"\\\\b(else)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.conditional.gnuplot\"}},\"end\":\"(?=([#{]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\"},{\"begin\":\"\\\\b(do)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.flow.gnuplot\"}},\"end\":\"(?=([#{]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"include\":\"#ForIterationExpr\"}]},{\"begin\":\"\\\\b(set)(?=\\\\s+pm3d)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.command.gnuplot\"}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"match\":\"\\\\b(hidden3d|map|transparent|solid)\\\\b\",\"name\":\"invalid.deprecated.options.gnuplot\"},{\"include\":\"#SetUnsetOptions\"},{\"include\":\"#ForIterationExpr\"},{\"include\":\"#Expression\"}]},{\"begin\":\"\\\\b((un)?set)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.command.gnuplot\"}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"include\":\"#SetUnsetOptions\"},{\"include\":\"#ForIterationExpr\"},{\"include\":\"#Expression\"}]},{\"begin\":\"\\\\b(show)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.command.gnuplot\"}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"include\":\"#ExtraShowOptions\"},{\"include\":\"#SetUnsetOptions\"},{\"include\":\"#Expression\"}]},{\"begin\":\"\\\\b(fit|(s)?plot)\\\\b\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.command.gnuplot\"}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"include\":\"#ColumnIndexLiteral\"},{\"include\":\"#PlotModifiers\"},{\"include\":\"#ForIterationExpr\"},{\"include\":\"#Expression\"}]}]},\"DataBlock\":{\"begin\":\"(\\\\$[A-Z_a-z]\\\\w*)\\\\s*(<<)\\\\s*([A-Z_a-z]\\\\w*)\\\\s*(?=(#|$))\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#SpecialVariable\"}]},\"3\":{\"name\":\"constant.language.datablock.gnuplot\"}},\"end\":\"^(\\\\3)\\\\b(.*)\",\"endCaptures\":{\"1\":{\"name\":\"constant.language.datablock.gnuplot\"},\"2\":{\"name\":\"invalid.illegal.datablock.gnuplot\"}},\"name\":\"meta.datablock.gnuplot\",\"patterns\":[{\"include\":\"#LineComment\"},{\"include\":\"#NumberLiteral\"},{\"include\":\"#DoubleQuotedStringLiteral\"}]},\"DeprecatedScriptArgsLiteral\":{\"match\":\"(\\\\$[#0-9])\",\"name\":\"invalid.illegal.scriptargs.gnuplot\"},\"DoubleQuotedStringLiteral\":{\"begin\":\"(\\\")\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.begin.gnuplot\"}},\"end\":\"((\\\")|(?=(?<!\\\\\\\\)\\\\n$))\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.gnuplot\"}},\"name\":\"string.quoted.double.gnuplot\",\"patterns\":[{\"include\":\"#EscapedChar\"},{\"include\":\"#RGBColorSpec\"},{\"include\":\"#DeprecatedScriptArgsLiteral\"},{\"include\":\"#InterpolatedStringLiteral\"}]},\"EscapedChar\":{\"match\":\"(\\\\\\\\.)\",\"name\":\"constant.character.escape.gnuplot\"},\"Expression\":{\"patterns\":[{\"include\":\"#Literal\"},{\"include\":\"#SpecialVariable\"},{\"include\":\"#BuiltinVariable\"},{\"include\":\"#BuiltinOperator\"},{\"include\":\"#TernaryExpr\"},{\"include\":\"#FunctionCallExpr\"},{\"include\":\"#SummationExpr\"}]},\"ExtraShowOptions\":{\"match\":\"\\\\b(?:all|bind|colornames|functions|plot|variables|version)\\\\b\",\"name\":\"support.class.options.gnuplot\"},\"ForIterationExpr\":{\"begin\":\"\\\\b(for)\\\\s*(\\\\[)\\\\s*(?:([A-Z_a-z]\\\\w*)\\\\s+(in)\\\\b)?\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.flow.gnuplot\"},\"2\":{\"patterns\":[{\"include\":\"#RangeSeparators\"}]},\"3\":{\"name\":\"variable.other.iterator.gnuplot\"},\"4\":{\"name\":\"keyword.control.flow.gnuplot\"}},\"end\":\"((])|(?=(#|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$)))\",\"endCaptures\":{\"2\":{\"patterns\":[{\"include\":\"#RangeSeparators\"}]}},\"patterns\":[{\"include\":\"#Expression\"},{\"include\":\"#RangeSeparators\"}]},\"FunctionCallExpr\":{\"begin\":\"\\\\b([A-Z_a-z]\\\\w*)\\\\s*(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"variable.function.gnuplot\",\"patterns\":[{\"include\":\"#BuiltinFunction\"}]},\"2\":{\"name\":\"punctuation.definition.arguments.begin.gnuplot\"}},\"end\":\"((\\\\))|(?=(#|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$)))\",\"endCaptures\":{\"2\":{\"name\":\"punctuation.definition.arguments.end.gnuplot\"}},\"name\":\"meta.function-call.gnuplot\",\"patterns\":[{\"include\":\"#Expression\"}]},\"FunctionDecl\":{\"begin\":\"\\\\b([A-Z_a-z]\\\\w*)\\\\s*((\\\\()\\\\s*([A-Z_a-z]\\\\w*)\\\\s*(?:(,)\\\\s*([A-Z_a-z]\\\\w*)\\\\s*)*(\\\\)))\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.gnuplot\",\"patterns\":[{\"include\":\"#BuiltinFunction\"}]},\"2\":{\"name\":\"meta.function.parameters.gnuplot\"},\"3\":{\"name\":\"punctuation.definition.parameters.begin.gnuplot\"},\"4\":{\"name\":\"variable.parameter.function.language.gnuplot\"},\"5\":{\"name\":\"punctuation.separator.parameters.gnuplot\"},\"6\":{\"name\":\"variable.parameter.function.language.gnuplot\"},\"7\":{\"name\":\"punctuation.definition.parameters.end.gnuplot\"}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"name\":\"meta.function.gnuplot\",\"patterns\":[{\"include\":\"#Expression\"}]},\"InterpolatedStringLiteral\":{\"begin\":\"(`)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.begin.gnuplot\"}},\"end\":\"((`)|(?=(?<!\\\\\\\\)\\\\n$))\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.gnuplot\"}},\"name\":\"string.interpolated.gnuplot\",\"patterns\":[{\"include\":\"#EscapedChar\"}]},\"InvalidVariableDecl\":{\"match\":\"\\\\b(GPVAL_\\\\w*|MOUSE_\\\\w*)\\\\b\",\"name\":\"invalid.illegal.variable.gnuplot\"},\"InvalidWord\":{\"match\":\"([^#;\\\\\\\\\\\\s]+)\",\"name\":\"invalid.illegal.gnuplot\"},\"LineComment\":{\"begin\":\"(#)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.comment.begin.gnuplot\"}},\"end\":\"(?=(?<!\\\\\\\\)\\\\n$)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.comment.end.gnuplot\"}},\"name\":\"comment.line.number-sign.gnuplot\"},\"Literal\":{\"patterns\":[{\"include\":\"#NumberLiteral\"},{\"include\":\"#DeprecatedScriptArgsLiteral\"},{\"include\":\"#SingleQuotedStringLiteral\"},{\"include\":\"#DoubleQuotedStringLiteral\"},{\"include\":\"#InterpolatedStringLiteral\"}]},\"MacroExpansion\":{\"begin\":\"(@[A-Z_a-z]\\\\w*)\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#SpecialVariable\"}]}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"include\":\"#Expression\"}]},\"NumberLiteral\":{\"patterns\":[{\"match\":\"((\\\\b([0-9]+)|(?<!\\\\d)))(\\\\.[0-9]+)([Ee][-+]?[0-9]+)?(cm|in)?\\\\b\",\"name\":\"constant.numeric.float.gnuplot\"},{\"match\":\"\\\\b([0-9]+)((([Ee][-+]?[0-9]+))\\\\b|(\\\\.([Ee][-+]?[0-9]+\\\\b)?))((?:cm|in)\\\\b)?\",\"name\":\"constant.numeric.float.gnuplot\"},{\"match\":\"\\\\b(0[Xx]\\\\h+)(cm|in)?\\\\b\",\"name\":\"constant.numeric.hex.gnuplot\"},{\"match\":\"\\\\b(0+)(cm|in)?\\\\b\",\"name\":\"constant.numeric.dec.gnuplot\"},{\"match\":\"\\\\b(0[0-7]+)(cm|in)?\\\\b\",\"name\":\"constant.numeric.oct.gnuplot\"},{\"match\":\"\\\\b(0[0-9]+)(cm|in)?\\\\b\",\"name\":\"invalid.illegal.oct.gnuplot\"},{\"match\":\"\\\\b([0-9]+)(cm|in)?\\\\b\",\"name\":\"constant.numeric.dec.gnuplot\"}]},\"PlotModifiers\":{\"patterns\":[{\"match\":\"\\\\b(thru)\\\\b\",\"name\":\"invalid.deprecated.plot.gnuplot\"},{\"match\":\"\\\\b(?:in(dex)?|every|us(ing)?|wi(th)?|via)\\\\b\",\"name\":\"storage.type.plot.gnuplot\"},{\"match\":\"\\\\b(newhist(ogram)?)\\\\b\",\"name\":\"storage.type.plot.gnuplot\"}]},\"RGBColorSpec\":{\"match\":\"\\\\G(0x|#)((\\\\h{6})|(\\\\h{8}))\\\\b\",\"name\":\"constant.other.placeholder.gnuplot\"},\"RangeSeparators\":{\"patterns\":[{\"match\":\"(\\\\[)\",\"name\":\"punctuation.section.brackets.begin.gnuplot\"},{\"match\":\"(:)\",\"name\":\"punctuation.separator.range.gnuplot\"},{\"match\":\"(])\",\"name\":\"punctuation.section.brackets.end.gnuplot\"}]},\"SetUnsetOptions\":{\"patterns\":[{\"match\":\"\\\\G\\\\s*\\\\b(?:clabel|data|function|historysize|macros|ticslevel|ticscale|(style\\\\s+increment\\\\s+\\\\w+))\\\\b\",\"name\":\"invalid.deprecated.options.gnuplot\"},{\"match\":\"\\\\G\\\\s*\\\\b(?:angles|arrow|autoscale|border|boxwidth|clip|cntr(label|param)|color(box|sequence)?|contour|(dash|line)type|datafile|decimal(sign)?|dgrid3d|dummy|encoding|(error)?bars|fit|fontpath|format|grid|hidden3d|history|(iso)?samples|jitter|key|label|link|loadpath|locale|logscale|mapping|[blrt]margin|margins|micro|minus(sign)?|mono(chrome)?|mouse|multiplot|nonlinear|object|offsets|origin|output|parametric|([pr])axis|pm3d|palette|pointintervalbox|pointsize|polar|print|psdir|size|style|surface|table|terminal|termoption|theta|tics|timestamp|timefmt|title|view|xyplane|zero|(no)?(m)?(x2??|y2??|z|cb|[rt])tics|(x2??|y2??|z|cb)data|(x2??|y2??|z|cb|r)label|(x2??|y2??|z|cb)dtics|(x2??|y2??|z|cb)mtics|(x2??|y2??|z|cb|[rtuv])range|(x2??|y2??|z)?zeroaxis)\\\\b\",\"name\":\"support.class.options.gnuplot\"}]},\"ShellCommand\":{\"begin\":\"(!)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.shell.gnuplot\"}},\"end\":\"(?=(#|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"patterns\":[{\"match\":\"([^#]|\\\\\\\\(?=\\\\n))\",\"name\":\"string.unquoted\"}]},\"SingleQuotedStringLiteral\":{\"begin\":\"(')\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.begin.gnuplot\"}},\"end\":\"((')(?!')|(?=(?<!\\\\\\\\)\\\\n$))\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.gnuplot\"}},\"name\":\"string.quoted.single.gnuplot\",\"patterns\":[{\"include\":\"#RGBColorSpec\"},{\"match\":\"('')\",\"name\":\"constant.character.escape.gnuplot\"}]},\"SpecialVariable\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.language.wildcard.gnuplot\"}},\"match\":\"(?<=[:=\\\\[])\\\\s*(\\\\*)\\\\s*(?=[]:])\"},{\"captures\":{\"2\":{\"name\":\"punctuation.definition.variable.gnuplot\"}},\"match\":\"(([$@])[A-Z_a-z]\\\\w*)\\\\b\",\"name\":\"constant.language.special.gnuplot\"}]},\"SummationExpr\":{\"begin\":\"\\\\b(sum)\\\\s*(\\\\[)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.sum.gnuplot\"},\"2\":{\"patterns\":[{\"include\":\"#RangeSeparators\"}]}},\"end\":\"((])|(?=(#|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$)))\",\"endCaptures\":{\"2\":{\"patterns\":[{\"include\":\"#RangeSeparators\"}]}},\"patterns\":[{\"include\":\"#Expression\"},{\"include\":\"#RangeSeparators\"}]},\"TernaryExpr\":{\"begin\":\"(?<!\\\\?)(\\\\?)(?!\\\\?)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.operator.ternary.gnuplot\"}},\"end\":\"((?<!:)(:)(?!:)|(?=(#|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$)))\",\"endCaptures\":{\"2\":{\"name\":\"keyword.operator.ternary.gnuplot\"}},\"patterns\":[{\"include\":\"#Expression\"}]},\"VariableDecl\":{\"begin\":\"\\\\b([A-Z_a-z]\\\\w*)\\\\s*(?:(\\\\[)\\\\s*(.*)\\\\s*(])\\\\s*)?(?=(=)(?!\\\\s*=))\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.variable.gnuplot\",\"patterns\":[{\"include\":\"#InvalidVariableDecl\"},{\"include\":\"#BuiltinVariable\"}]},\"3\":{\"patterns\":[{\"include\":\"#Expression\"}]}},\"end\":\"(?=([#;]|\\\\\\\\(?!\\\\n)|(?<!\\\\\\\\)\\\\n$))\",\"name\":\"meta.variable.gnuplot\",\"patterns\":[{\"include\":\"#Expression\"}]}},\"scopeName\":\"source.gnuplot\"}"))];
2
+ export { gnuplot_default as default };
@@ -0,0 +1,2 @@
1
+ var go_default = [Object.freeze(JSON.parse("{\"displayName\":\"Go\",\"name\":\"go\",\"patterns\":[{\"include\":\"#statements\"}],\"repository\":{\"after_control_variables\":{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.go\"}]}},\"match\":\"(?<=\\\\brange\\\\b|;|\\\\bif\\\\b|\\\\bfor\\\\b|[<>]|<=|>=|==|!=|\\\\w[-%*+/]|\\\\w[-%*+/]=|\\\\|\\\\||&&)\\\\s*((?![]\\\\[]+)[-\\\\]!%*+./:<=>\\\\[_[:alnum:]]+)\\\\s*(?=\\\\{)\"},\"brackets\":{\"patterns\":[{\"begin\":\"\\\\{\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.curly.go\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.curly.go\"}},\"patterns\":[{\"include\":\"$self\"}]},{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"$self\"}]},{\"begin\":\"\\\\[\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.square.go\"}},\"end\":\"]\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.square.go\"}},\"patterns\":[{\"include\":\"$self\"}]}]},\"built_in_functions\":{\"patterns\":[{\"match\":\"\\\\b(append|cap|close|complex|copy|delete|imag|len|panic|print|println|real|recover|min|max|clear)\\\\b(?=\\\\()\",\"name\":\"entity.name.function.support.builtin.go\"},{\"begin\":\"\\\\b(new)\\\\b(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.support.builtin.go\"},\"2\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#functions\"},{\"include\":\"#struct_variables_types\"},{\"include\":\"#support_functions\"},{\"include\":\"#type-declarations\"},{\"include\":\"#generic_types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"},{\"include\":\"$self\"}]},{\"begin\":\"\\\\b(make)\\\\b(\\\\()((?:(?:[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+(?:\\\\([^)]+\\\\))?)?[]*\\\\[]+{0,1}(?:(?!\\\\bmap\\\\b)[.\\\\w]+)?(\\\\[(?:\\\\S+(?:,\\\\s*\\\\S+)*)?])?,?)?\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.support.builtin.go\"},\"2\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"},\"3\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"$self\"}]}]},\"comments\":{\"patterns\":[{\"begin\":\"(/\\\\*)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.comment.go\"}},\"end\":\"(\\\\*/)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.comment.go\"}},\"name\":\"comment.block.go\"},{\"begin\":\"(//)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.comment.go\"}},\"end\":\"\\\\n|$\",\"name\":\"comment.line.double-slash.go\"}]},\"const_assignment\":{\"patterns\":[{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#delimiters\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.constant.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#generic_types\"},{\"match\":\"\\\\(\",\"name\":\"punctuation.definition.begin.bracket.round.go\"},{\"match\":\"\\\\)\",\"name\":\"punctuation.definition.end.bracket.round.go\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(?<=\\\\bconst\\\\b)\\\\s*\\\\b([.\\\\w]+(?:,\\\\s*[.\\\\w]+)*)\\\\s*((?:(?:[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+(?:\\\\([^)]+\\\\))?)?(?![]*\\\\[]+{0,1}\\\\b(?:struct|func|map)\\\\b)(?:[]*.\\\\[\\\\w]+(?:,\\\\s*[]*.\\\\[\\\\w]+)*)?\\\\s*=?)?\"},{\"begin\":\"(?<=\\\\bconst\\\\b)\\\\s*(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#delimiters\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.constant.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#generic_types\"},{\"match\":\"\\\\(\",\"name\":\"punctuation.definition.begin.bracket.round.go\"},{\"match\":\"\\\\)\",\"name\":\"punctuation.definition.end.bracket.round.go\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"^\\\\s*\\\\b([.\\\\w]+(?:,\\\\s*[.\\\\w]+)*)\\\\s*((?:(?:[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+(?:\\\\([^)]+\\\\))?)?(?![]*\\\\[]+{0,1}\\\\b(?:struct|func|map)\\\\b)(?:[]*.\\\\[\\\\w]+(?:,\\\\s*[]*.\\\\[\\\\w]+)*)?\\\\s*=?)?\"},{\"include\":\"$self\"}]}]},\"delimiters\":{\"patterns\":[{\"match\":\",\",\"name\":\"punctuation.other.comma.go\"},{\"match\":\"\\\\.(?!\\\\.\\\\.)\",\"name\":\"punctuation.other.period.go\"},{\"match\":\":(?!=)\",\"name\":\"punctuation.other.colon.go\"}]},\"double_parentheses_types\":{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"match\":\"\\\\(\",\"name\":\"punctuation.definition.begin.bracket.round.go\"},{\"match\":\"\\\\)\",\"name\":\"punctuation.definition.end.bracket.round.go\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\{\",\"name\":\"punctuation.definition.begin.bracket.curly.go\"},{\"match\":\"}\",\"name\":\"punctuation.definition.end.bracket.curly.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(?<!\\\\w)(\\\\([]*\\\\[]+{0,1}[.\\\\w]+(?:\\\\[(?:[]*.\\\\[{}\\\\w]+(?:,\\\\s*[]*.\\\\[{}\\\\w]+)*)?])?\\\\))(?=\\\\()\"},\"function_declaration\":{\"begin\":\"^\\\\b(func)\\\\b\\\\s*(\\\\([^)]+\\\\)\\\\s*)?(?:(\\\\w+)(?=[(\\\\[]))?\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.function.go\"},\"2\":{\"patterns\":[{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"variable.parameter.go\"},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(\\\\w+\\\\s+)?([*.\\\\w]+(?:\\\\[(?:[*.\\\\w]+(?:,\\\\s+)?)+{0,1}])?)\"},{\"include\":\"$self\"}]}]},\"3\":{\"patterns\":[{\"match\":\"\\\\d\\\\w*\",\"name\":\"invalid.illegal.identifier.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.function.go\"}]}},\"end\":\"(?<=\\\\))\\\\s*((?:[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}(?![]*\\\\[]+{0,1}\\\\b(?:struct|interface)\\\\b)[-\\\\]*.\\\\[\\\\w]+)?\\\\s*(?=\\\\{)\",\"endCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"patterns\":[{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#function_param_types\"}]},{\"begin\":\"([*.\\\\w]+)?(\\\\[)\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"2\":{\"name\":\"punctuation.definition.begin.bracket.square.go\"}},\"end\":\"]\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.square.go\"}},\"patterns\":[{\"include\":\"#generic_param_types\"}]},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(?<=\\\\))\\\\s*((?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}[-\\\\]*.<>\\\\[\\\\w]+\\\\s*(?:/[*/].*)?)$\"},{\"include\":\"$self\"}]},\"function_param_types\":{\"patterns\":[{\"include\":\"#struct_variables_types\"},{\"include\":\"#interface_variables_types\"},{\"include\":\"#type-declarations-without-brackets\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.parameter.go\"}]}},\"match\":\"((?:\\\\b\\\\w+,\\\\s*)+{0,1}\\\\b\\\\w+)\\\\s+(?=(?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}[]*\\\\[]+{0,1}\\\\b(?:struct|interface)\\\\b\\\\s*\\\\{)\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.parameter.go\"}]}},\"match\":\"(?:(?<=\\\\()|^\\\\s*)((?:\\\\b\\\\w+,\\\\s*)+(?:/[*/].*)?)$\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#delimiters\"},{\"match\":\"\\\\w+\",\"name\":\"variable.parameter.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"((?:\\\\b\\\\w+,\\\\s*)+{0,1}\\\\b\\\\w+)\\\\s+((?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}(?:[]*.\\\\[\\\\w]+{0,1}(?:\\\\bfunc\\\\b\\\\([^)]+{0,1}\\\\)(?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}\\\\s*)+(?:[]*.\\\\[\\\\w]+|\\\\([^)]+{0,1}\\\\))?|(?:[]*\\\\[]+{0,1}[*.\\\\w]+(?:\\\\[[^]]+])?[*.\\\\w]+{0,1})+))\"},{\"begin\":\"([*.\\\\w]+)?(\\\\[)\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"2\":{\"name\":\"punctuation.definition.begin.bracket.square.go\"}},\"end\":\"]\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.square.go\"}},\"patterns\":[{\"include\":\"#generic_param_types\"}]},{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#function_param_types\"}]},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"([.\\\\w]+)\"},{\"include\":\"$self\"}]},\"functions\":{\"begin\":\"\\\\b(func)\\\\b(?=\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.function.go\"}},\"end\":\"(?<=\\\\))(\\\\s*(?:[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+)?(\\\\s*(?:[]*\\\\[]+{0,1}[*.\\\\w]+)?(?:\\\\[(?:[*.\\\\w]+{0,1}(?:\\\\[[^]]+{0,1}])?(?:,\\\\s+)?)+]|\\\\([^)]+{0,1}\\\\))?[*.\\\\w]+{0,1}\\\\s*(?=\\\\{)|\\\\s*(?:[]*\\\\[]+{0,1}(?!\\\\bfunc\\\\b)[*.\\\\w]+(?:\\\\[(?:[*.\\\\w]+{0,1}(?:\\\\[[^]]+{0,1}])?(?:,\\\\s+)?)+])?[*.\\\\w]+{0,1}|\\\\([^)]+{0,1}\\\\)))?\",\"endCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"patterns\":[{\"include\":\"#parameter-variable-types\"}]},\"functions_inline\":{\"captures\":{\"1\":{\"name\":\"keyword.function.go\"},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#function_param_types\"},{\"include\":\"$self\"}]},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\{\",\"name\":\"punctuation.definition.begin.bracket.curly.go\"},{\"match\":\"}\",\"name\":\"punctuation.definition.end.bracket.curly.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"\\\\b(func)\\\\b(\\\\([^/]*?\\\\)\\\\s+\\\\([^/]*?\\\\))\\\\s+(?=\\\\{)\"},\"generic_param_types\":{\"patterns\":[{\"include\":\"#struct_variables_types\"},{\"include\":\"#interface_variables_types\"},{\"include\":\"#type-declarations-without-brackets\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.parameter.go\"}]}},\"match\":\"((?:\\\\b\\\\w+,\\\\s*)+{0,1}\\\\b\\\\w+)\\\\s+(?=(?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}[]*\\\\[]+{0,1}\\\\b(?:struct|interface)\\\\b\\\\s*\\\\{)\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.parameter.go\"}]}},\"match\":\"(?:(?<=\\\\()|^\\\\s*)((?:\\\\b\\\\w+,\\\\s*)+(?:/[*/].*)?)$\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#delimiters\"},{\"match\":\"\\\\w+\",\"name\":\"variable.parameter.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"3\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"((?:\\\\b\\\\w+,\\\\s*)+{0,1}\\\\b\\\\w+)\\\\s+((?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}(?:[]*.\\\\[\\\\w]+{0,1}(?:\\\\bfunc\\\\b\\\\([^)]+{0,1}\\\\)(?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}\\\\s*)+(?:[*.\\\\w]+|\\\\([^)]+{0,1}\\\\))?|(?:(?:[*.~\\\\w]+|\\\\[(?:[*.\\\\w]+{0,1}(?:\\\\[[^]]+{0,1}])?(?:,\\\\s+)?)+])[*.\\\\w]+{0,1})+))\"},{\"begin\":\"([*.\\\\w]+)?(\\\\[)\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"2\":{\"name\":\"punctuation.definition.begin.bracket.square.go\"}},\"end\":\"]\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.square.go\"}},\"patterns\":[{\"include\":\"#generic_param_types\"}]},{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#function_param_types\"}]},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"\\\\b([.\\\\w]+)\"},{\"include\":\"$self\"}]},\"generic_types\":{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#parameter-variable-types\"}]}},\"match\":\"([*.\\\\w]+)(\\\\[[^]]+{0,1}])\"},\"group-functions\":{\"patterns\":[{\"include\":\"#function_declaration\"},{\"include\":\"#functions_inline\"},{\"include\":\"#functions\"},{\"include\":\"#built_in_functions\"},{\"include\":\"#support_functions\"}]},\"group-types\":{\"patterns\":[{\"include\":\"#other_struct_interface_expressions\"},{\"include\":\"#type_assertion_inline\"},{\"include\":\"#struct_variables_types\"},{\"include\":\"#interface_variables_types\"},{\"include\":\"#single_type\"},{\"include\":\"#multi_types\"},{\"include\":\"#struct_interface_declaration\"},{\"include\":\"#double_parentheses_types\"},{\"include\":\"#switch_types\"},{\"include\":\"#type-declarations\"}]},\"group-variables\":{\"patterns\":[{\"include\":\"#const_assignment\"},{\"include\":\"#var_assignment\"},{\"include\":\"#variable_assignment\"},{\"include\":\"#label_loop_variables\"},{\"include\":\"#slice_index_variables\"},{\"include\":\"#property_variables\"},{\"include\":\"#switch_variables\"},{\"include\":\"#other_variables\"}]},\"hover\":{\"patterns\":[{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.property.go\"}]},\"2\":{\"patterns\":[{\"match\":\"\\\\binvalid\\\\b\\\\s+\\\\btype\\\\b\",\"name\":\"invalid.field.go\"},{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(?<=^\\\\bfield\\\\b)\\\\s+([*.\\\\w]+)\\\\s+([\\\\s\\\\S]+)\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(?<=^\\\\breturns\\\\b)\\\\s+([\\\\s\\\\S]+)\"}]},\"import\":{\"patterns\":[{\"begin\":\"\\\\b(import)\\\\s+\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.control.import.go\"}},\"end\":\"(?!\\\\G)\",\"patterns\":[{\"include\":\"#imports\"}]}]},\"imports\":{\"patterns\":[{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#delimiters\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.import.go\"}]},\"2\":{\"name\":\"string.quoted.double.go\"},\"3\":{\"name\":\"punctuation.definition.string.begin.go\"},\"4\":{\"name\":\"entity.name.import.go\"},\"5\":{\"name\":\"punctuation.definition.string.end.go\"}},\"match\":\"(\\\\s*[.\\\\w]+)?\\\\s*((\\\")([^\\\"]*)(\\\"))\"},{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.imports.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.imports.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#comments\"},{\"include\":\"#imports\"}]},{\"include\":\"$self\"}]},\"interface_variables_types\":{\"begin\":\"\\\\b(interface)\\\\b\\\\s*(\\\\{)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.interface.go\"},\"2\":{\"name\":\"punctuation.definition.begin.bracket.curly.go\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.curly.go\"}},\"patterns\":[{\"include\":\"#interface_variables_types_field\"},{\"include\":\"$self\"}]},\"interface_variables_types_field\":{\"patterns\":[{\"include\":\"#support_functions\"},{\"include\":\"#type-declarations-without-brackets\"},{\"begin\":\"([*.\\\\w]+)?(\\\\[)\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"2\":{\"name\":\"punctuation.definition.begin.bracket.square.go\"}},\"end\":\"]\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.square.go\"}},\"patterns\":[{\"include\":\"#generic_param_types\"}]},{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#function_param_types\"}]},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"([.\\\\w]+)\"}]},\"keywords\":{\"patterns\":[{\"match\":\"\\\\b(break|case|continue|default|defer|else|fallthrough|for|go|goto|if|range|return|select|switch)\\\\b\",\"name\":\"keyword.control.go\"},{\"match\":\"\\\\bchan\\\\b\",\"name\":\"keyword.channel.go\"},{\"match\":\"\\\\bconst\\\\b\",\"name\":\"keyword.const.go\"},{\"match\":\"\\\\bvar\\\\b\",\"name\":\"keyword.var.go\"},{\"match\":\"\\\\bfunc\\\\b\",\"name\":\"keyword.function.go\"},{\"match\":\"\\\\binterface\\\\b\",\"name\":\"keyword.interface.go\"},{\"match\":\"\\\\bmap\\\\b\",\"name\":\"keyword.map.go\"},{\"match\":\"\\\\bstruct\\\\b\",\"name\":\"keyword.struct.go\"},{\"match\":\"\\\\bimport\\\\b\",\"name\":\"keyword.control.import.go\"},{\"match\":\"\\\\btype\\\\b\",\"name\":\"keyword.type.go\"}]},\"label_loop_variables\":{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.label.go\"}]}},\"match\":\"^(\\\\s*\\\\w+:\\\\s*|\\\\s*\\\\b(?:break|goto|continue)\\\\b\\\\s+\\\\w+(?:\\\\s*/[*/]\\\\s*.*)?)$\"},\"language_constants\":{\"captures\":{\"1\":{\"name\":\"constant.language.boolean.go\"},\"2\":{\"name\":\"constant.language.null.go\"},\"3\":{\"name\":\"constant.language.iota.go\"}},\"match\":\"\\\\b(?:(true|false)|(nil)|(iota))\\\\b\"},\"map_types\":{\"begin\":\"\\\\b(map)\\\\b(\\\\[)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.map.go\"},\"2\":{\"name\":\"punctuation.definition.begin.bracket.square.go\"}},\"end\":\"(])((?:[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}(?![]*\\\\[]+{0,1}\\\\b(?:func|struct|map)\\\\b)[]*\\\\[]+{0,1}[.\\\\w]+(?:\\\\[(?:[]*.\\\\[{}\\\\w]+(?:,\\\\s*[]*.\\\\[{}\\\\w]+)*)?])?)?\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.end.bracket.square.go\"},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"include\":\"#functions\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\{\",\"name\":\"punctuation.definition.begin.bracket.curly.go\"},{\"match\":\"}\",\"name\":\"punctuation.definition.end.bracket.curly.go\"},{\"match\":\"\\\\(\",\"name\":\"punctuation.definition.begin.bracket.round.go\"},{\"match\":\"\\\\)\",\"name\":\"punctuation.definition.end.bracket.round.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"multi_types\":{\"begin\":\"\\\\b(type)\\\\b\\\\s*(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.type.go\"},\"2\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#struct_variables_types\"},{\"include\":\"#interface_variables_types\"},{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"numeric_literals\":{\"captures\":{\"0\":{\"patterns\":[{\"begin\":\"(?=.)\",\"end\":\"\\\\n|$\",\"patterns\":[{\"captures\":{\"1\":{\"name\":\"constant.numeric.decimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"2\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"3\":{\"name\":\"constant.numeric.decimal.point.go\"},\"4\":{\"name\":\"constant.numeric.decimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"5\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"6\":{\"name\":\"keyword.other.unit.exponent.decimal.go\"},\"7\":{\"name\":\"keyword.operator.plus.exponent.decimal.go\"},\"8\":{\"name\":\"keyword.operator.minus.exponent.decimal.go\"},\"9\":{\"name\":\"constant.numeric.exponent.decimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"10\":{\"name\":\"keyword.other.unit.imaginary.go\"},\"11\":{\"name\":\"constant.numeric.decimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"12\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"13\":{\"name\":\"keyword.other.unit.exponent.decimal.go\"},\"14\":{\"name\":\"keyword.operator.plus.exponent.decimal.go\"},\"15\":{\"name\":\"keyword.operator.minus.exponent.decimal.go\"},\"16\":{\"name\":\"constant.numeric.exponent.decimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"17\":{\"name\":\"keyword.other.unit.imaginary.go\"},\"18\":{\"name\":\"constant.numeric.decimal.point.go\"},\"19\":{\"name\":\"constant.numeric.decimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"20\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"21\":{\"name\":\"keyword.other.unit.exponent.decimal.go\"},\"22\":{\"name\":\"keyword.operator.plus.exponent.decimal.go\"},\"23\":{\"name\":\"keyword.operator.minus.exponent.decimal.go\"},\"24\":{\"name\":\"constant.numeric.exponent.decimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"25\":{\"name\":\"keyword.other.unit.imaginary.go\"},\"26\":{\"name\":\"keyword.other.unit.hexadecimal.go\"},\"27\":{\"name\":\"constant.numeric.hexadecimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"28\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"29\":{\"name\":\"constant.numeric.hexadecimal.go\"},\"30\":{\"name\":\"constant.numeric.hexadecimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"31\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"32\":{\"name\":\"keyword.other.unit.exponent.hexadecimal.go\"},\"33\":{\"name\":\"keyword.operator.plus.exponent.hexadecimal.go\"},\"34\":{\"name\":\"keyword.operator.minus.exponent.hexadecimal.go\"},\"35\":{\"name\":\"constant.numeric.exponent.hexadecimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"36\":{\"name\":\"keyword.other.unit.imaginary.go\"},\"37\":{\"name\":\"keyword.other.unit.hexadecimal.go\"},\"38\":{\"name\":\"constant.numeric.hexadecimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"39\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"40\":{\"name\":\"keyword.other.unit.exponent.hexadecimal.go\"},\"41\":{\"name\":\"keyword.operator.plus.exponent.hexadecimal.go\"},\"42\":{\"name\":\"keyword.operator.minus.exponent.hexadecimal.go\"},\"43\":{\"name\":\"constant.numeric.exponent.hexadecimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"44\":{\"name\":\"keyword.other.unit.imaginary.go\"},\"45\":{\"name\":\"keyword.other.unit.hexadecimal.go\"},\"46\":{\"name\":\"constant.numeric.hexadecimal.go\"},\"47\":{\"name\":\"constant.numeric.hexadecimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"48\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"49\":{\"name\":\"keyword.other.unit.exponent.hexadecimal.go\"},\"50\":{\"name\":\"keyword.operator.plus.exponent.hexadecimal.go\"},\"51\":{\"name\":\"keyword.operator.minus.exponent.hexadecimal.go\"},\"52\":{\"name\":\"constant.numeric.exponent.hexadecimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"53\":{\"name\":\"keyword.other.unit.imaginary.go\"}},\"match\":\"\\\\G(?:(?:(?:(?:(?:(?=[.0-9])(?!0[BOXbox])([0-9](?:[0-9]|((?<=\\\\h)_(?=\\\\h)))*)((?<=[0-9])\\\\.|\\\\.(?=[0-9]))([0-9](?:[0-9]|((?<=\\\\h)_(?=\\\\h)))*)?(?:(?<!_)([Ee])(\\\\+?)(-?)([0-9](?:[0-9]|(?<=\\\\h)_(?=\\\\h))*))?(i(?!\\\\w))?(?:\\\\n|$)|(?=[.0-9])(?!0[BOXbox])([0-9](?:[0-9]|((?<=\\\\h)_(?=\\\\h)))*)(?<!_)([Ee])(\\\\+?)(-?)([0-9](?:[0-9]|(?<=\\\\h)_(?=\\\\h))*)(i(?!\\\\w))?(?:\\\\n|$))|((?<=[0-9])\\\\.|\\\\.(?=[0-9]))([0-9](?:[0-9]|((?<=\\\\h)_(?=\\\\h)))*)(?:(?<!_)([Ee])(\\\\+?)(-?)([0-9](?:[0-9]|(?<=\\\\h)_(?=\\\\h))*))?(i(?!\\\\w))?(?:\\\\n|$))|(0[Xx])_?(\\\\h(?:\\\\h|((?<=\\\\h)_(?=\\\\h)))*)((?<=\\\\h)\\\\.|\\\\.(?=\\\\h))(\\\\h(?:\\\\h|((?<=\\\\h)_(?=\\\\h)))*)?(?<!_)([Pp])(\\\\+?)(-?)([0-9](?:[0-9]|(?<=\\\\h)_(?=\\\\h))*)(i(?!\\\\w))?(?:\\\\n|$))|(0[Xx])_?(\\\\h(?:\\\\h|((?<=\\\\h)_(?=\\\\h)))*)(?<!_)([Pp])(\\\\+?)(-?)([0-9](?:[0-9]|(?<=\\\\h)_(?=\\\\h))*)(i(?!\\\\w))?(?:\\\\n|$))|(0[Xx])((?<=\\\\h)\\\\.|\\\\.(?=\\\\h))(\\\\h(?:\\\\h|((?<=\\\\h)_(?=\\\\h)))*)(?<!_)([Pp])(\\\\+?)(-?)([0-9](?:[0-9]|(?<=\\\\h)_(?=\\\\h))*)(i(?!\\\\w))?(?:\\\\n|$))\"},{\"captures\":{\"1\":{\"name\":\"constant.numeric.decimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"2\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"3\":{\"name\":\"keyword.other.unit.imaginary.go\"},\"4\":{\"name\":\"keyword.other.unit.binary.go\"},\"5\":{\"name\":\"constant.numeric.binary.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"6\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"7\":{\"name\":\"keyword.other.unit.imaginary.go\"},\"8\":{\"name\":\"keyword.other.unit.octal.go\"},\"9\":{\"name\":\"constant.numeric.octal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"10\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"11\":{\"name\":\"keyword.other.unit.imaginary.go\"},\"12\":{\"name\":\"keyword.other.unit.hexadecimal.go\"},\"13\":{\"name\":\"constant.numeric.hexadecimal.go\",\"patterns\":[{\"match\":\"(?<=\\\\h)_(?=\\\\h)\",\"name\":\"punctuation.separator.constant.numeric.go\"}]},\"14\":{\"name\":\"punctuation.separator.constant.numeric.go\"},\"15\":{\"name\":\"keyword.other.unit.imaginary.go\"}},\"match\":\"\\\\G(?:(?:(?:(?=[.0-9])(?!0[BOXbox])([0-9](?:[0-9]|((?<=\\\\h)_(?=\\\\h)))*)(i(?!\\\\w))?(?:\\\\n|$)|(0[Bb])_?([01](?:[01]|((?<=\\\\h)_(?=\\\\h)))*)(i(?!\\\\w))?(?:\\\\n|$))|(0[Oo]?)_?((?:[0-7]|((?<=\\\\h)_(?=\\\\h)))+)(i(?!\\\\w))?(?:\\\\n|$))|(0[Xx])_?(\\\\h(?:\\\\h|((?<=\\\\h)_(?=\\\\h)))*)(i(?!\\\\w))?(?:\\\\n|$))\"},{\"match\":\"(?:[.0-9A-Z_a-z]|(?<=[EPep])[-+])+\",\"name\":\"invalid.illegal.constant.numeric.go\"}]}]}},\"match\":\"(?<!\\\\w)\\\\.?\\\\d(?:[.0-9A-Z_a-z]|(?<=[EPep])[-+])*\"},\"operators\":{\"patterns\":[{\"match\":\"(?<!\\\\w)[\\\\&*]+(?!\\\\d)(?=[]\\\\[\\\\w]|<-)\",\"name\":\"keyword.operator.address.go\"},{\"match\":\"<-\",\"name\":\"keyword.operator.channel.go\"},{\"match\":\"--\",\"name\":\"keyword.operator.decrement.go\"},{\"match\":\"\\\\+\\\\+\",\"name\":\"keyword.operator.increment.go\"},{\"match\":\"(==|!=|<=|>=|<(?!<)|>(?!>))\",\"name\":\"keyword.operator.comparison.go\"},{\"match\":\"(&&|\\\\|\\\\||!)\",\"name\":\"keyword.operator.logical.go\"},{\"match\":\"((?:|[-%*+/:^|]|<<|>>|&\\\\^?)=)\",\"name\":\"keyword.operator.assignment.go\"},{\"match\":\"([-%*+/])\",\"name\":\"keyword.operator.arithmetic.go\"},{\"match\":\"(&(?!\\\\^)|[\\\\^|]|&\\\\^|<<|>>|~)\",\"name\":\"keyword.operator.arithmetic.bitwise.go\"},{\"match\":\"\\\\.\\\\.\\\\.\",\"name\":\"keyword.operator.ellipsis.go\"}]},\"other_struct_interface_expressions\":{\"patterns\":[{\"include\":\"#after_control_variables\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\{\",\"name\":\"punctuation.definition.begin.bracket.curly.go\"},{\"match\":\"}\",\"name\":\"punctuation.definition.end.bracket.curly.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"\\\\b(?!(?:struct|interface)\\\\b)([.\\\\w]+)(?<brackets>\\\\[(?:[^]\\\\[]|\\\\g<brackets>)*])?(?=\\\\{)\"}]},\"other_variables\":{\"match\":\"\\\\w+\",\"name\":\"variable.other.go\"},\"package_name\":{\"patterns\":[{\"begin\":\"\\\\b(package)\\\\s+\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.package.go\"}},\"end\":\"(?!\\\\G)\",\"patterns\":[{\"match\":\"\\\\d\\\\w*\",\"name\":\"invalid.illegal.identifier.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.package.go\"}]}]},\"parameter-variable-types\":{\"patterns\":[{\"match\":\"\\\\{\",\"name\":\"punctuation.definition.begin.bracket.curly.go\"},{\"match\":\"}\",\"name\":\"punctuation.definition.end.bracket.curly.go\"},{\"begin\":\"([*.\\\\w]+)?(\\\\[)\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"2\":{\"name\":\"punctuation.definition.begin.bracket.square.go\"}},\"end\":\"]\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.square.go\"}},\"patterns\":[{\"include\":\"#generic_param_types\"}]},{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#function_param_types\"}]}]},\"property_variables\":{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.property.go\"}]}},\"match\":\"\\\\b([.\\\\w]+:(?!=))\"},\"raw_string_literals\":{\"begin\":\"`\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.go\"}},\"end\":\"`\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.go\"}},\"name\":\"string.quoted.raw.go\",\"patterns\":[{\"include\":\"#string_placeholder\"}]},\"runes\":{\"patterns\":[{\"begin\":\"'\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.go\"}},\"end\":\"'\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.go\"}},\"name\":\"string.quoted.rune.go\",\"patterns\":[{\"match\":\"\\\\G(\\\\\\\\([0-7]{3}|[\\\"'\\\\\\\\abfnrtv]|x\\\\h{2}|u\\\\h{4}|U\\\\h{8})|.)(?=')\",\"name\":\"constant.other.rune.go\"},{\"match\":\"[^']+\",\"name\":\"invalid.illegal.unknown-rune.go\"}]}]},\"single_type\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.type.go\"},\"2\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"3\":{\"patterns\":[{\"begin\":\"\\\\(\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#function_param_types\"},{\"include\":\"$self\"}]},{\"include\":\"#type-declarations\"},{\"include\":\"#generic_types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"^\\\\s*\\\\b(type)\\\\b\\\\s*([*.\\\\w]+)\\\\s+(?!(?:=\\\\s*)?[]*\\\\[]+{0,1}\\\\b(?:struct|interface)\\\\b)([\\\\s\\\\S]+)\"},{\"begin\":\"(?:^|\\\\s+)\\\\b(type)\\\\b\\\\s*([*.\\\\w]+)(?=\\\\[)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.type.go\"},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"end\":\"(?<=])(\\\\s+(?:=\\\\s*)?(?:[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}(?![]*\\\\[]+{0,1}\\\\b(?:struct|interface|func)\\\\b)[-\\\\]*.\\\\[\\\\w]+(?:,\\\\s*[]*.\\\\[\\\\w]+)*)?\",\"endCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"patterns\":[{\"include\":\"#struct_variables_types\"},{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\{\",\"name\":\"punctuation.definition.begin.bracket.curly.go\"},{\"match\":\"}\",\"name\":\"punctuation.definition.end.bracket.curly.go\"},{\"match\":\"\\\\(\",\"name\":\"punctuation.definition.begin.bracket.round.go\"},{\"match\":\"\\\\)\",\"name\":\"punctuation.definition.end.bracket.round.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}]},\"slice_index_variables\":{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.go\"}]}},\"match\":\"(?<=\\\\w\\\\[)((?:\\\\b[-%\\\\&*+./<>|\\\\w]+:|:\\\\b[-%\\\\&*+./<>|\\\\w]+)(?:\\\\b[-%\\\\&*+./<>|\\\\w]+)?(?::\\\\b[-%\\\\&*+./<>|\\\\w]+)?)(?=])\"},\"statements\":{\"patterns\":[{\"include\":\"#package_name\"},{\"include\":\"#import\"},{\"include\":\"#syntax_errors\"},{\"include\":\"#group-functions\"},{\"include\":\"#group-types\"},{\"include\":\"#group-variables\"},{\"include\":\"#hover\"}]},\"storage_types\":{\"patterns\":[{\"match\":\"\\\\bbool\\\\b\",\"name\":\"storage.type.boolean.go\"},{\"match\":\"\\\\bbyte\\\\b\",\"name\":\"storage.type.byte.go\"},{\"match\":\"\\\\berror\\\\b\",\"name\":\"storage.type.error.go\"},{\"match\":\"\\\\b(complex(64|128)|float(32|64)|u?int(8|16|32|64)?)\\\\b\",\"name\":\"storage.type.numeric.go\"},{\"match\":\"\\\\brune\\\\b\",\"name\":\"storage.type.rune.go\"},{\"match\":\"\\\\bstring\\\\b\",\"name\":\"storage.type.string.go\"},{\"match\":\"\\\\buintptr\\\\b\",\"name\":\"storage.type.uintptr.go\"},{\"match\":\"\\\\bany\\\\b\",\"name\":\"entity.name.type.any.go\"},{\"match\":\"\\\\bcomparable\\\\b\",\"name\":\"entity.name.type.comparable.go\"}]},\"string_escaped_char\":{\"patterns\":[{\"match\":\"\\\\\\\\([0-7]{3}|[\\\"'\\\\\\\\abfnrtv]|x\\\\h{2}|u\\\\h{4}|U\\\\h{8})\",\"name\":\"constant.character.escape.go\"},{\"match\":\"\\\\\\\\[^\\\"'0-7Uabfnrtuvx]\",\"name\":\"invalid.illegal.unknown-escape.go\"}]},\"string_literals\":{\"patterns\":[{\"begin\":\"\\\"\",\"beginCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.begin.go\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.end.go\"}},\"name\":\"string.quoted.double.go\",\"patterns\":[{\"include\":\"#string_escaped_char\"},{\"include\":\"#string_placeholder\"}]}]},\"string_placeholder\":{\"patterns\":[{\"match\":\"%(\\\\[\\\\d+])?([- #+0]{0,2}((\\\\d+|\\\\*)?(\\\\.?(\\\\d+|\\\\*|(\\\\[\\\\d+])\\\\*?)?(\\\\[\\\\d+])?)?))?[%EFGTUXb-gopqstvwx]\",\"name\":\"constant.other.placeholder.go\"}]},\"struct_interface_declaration\":{\"captures\":{\"1\":{\"name\":\"keyword.type.go\"},\"2\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"^\\\\s*\\\\b(type)\\\\b\\\\s*([.\\\\w]+)\"},\"struct_variable_types_fields_multi\":{\"patterns\":[{\"begin\":\"\\\\b(\\\\w+(?:,\\\\s*\\\\b\\\\w+)*(?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}\\\\s*[]*\\\\[]+{0,1})\\\\b(struct)\\\\b\\\\s*(\\\\{)\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.property.go\"}]},\"2\":{\"name\":\"keyword.struct.go\"},\"3\":{\"name\":\"punctuation.definition.begin.bracket.curly.go\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.curly.go\"}},\"patterns\":[{\"include\":\"#struct_variables_types_fields\"},{\"include\":\"$self\"}]},{\"begin\":\"\\\\b(\\\\w+(?:,\\\\s*\\\\b\\\\w+)*(?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}\\\\s*[]*\\\\[]+{0,1})\\\\b(interface)\\\\b\\\\s*(\\\\{)\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.property.go\"}]},\"2\":{\"name\":\"keyword.interface.go\"},\"3\":{\"name\":\"punctuation.definition.begin.bracket.curly.go\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.curly.go\"}},\"patterns\":[{\"include\":\"#interface_variables_types_field\"},{\"include\":\"$self\"}]},{\"begin\":\"\\\\b(\\\\w+(?:,\\\\s*\\\\b\\\\w+)*(?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}\\\\s*[]*\\\\[]+{0,1})\\\\b(func)\\\\b\\\\s*(\\\\()\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.property.go\"}]},\"2\":{\"name\":\"keyword.function.go\"},\"3\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"include\":\"#function_param_types\"},{\"include\":\"$self\"}]},{\"include\":\"#parameter-variable-types\"}]},\"struct_variables_types\":{\"begin\":\"\\\\b(struct)\\\\b\\\\s*(\\\\{)\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.struct.go\"},\"2\":{\"name\":\"punctuation.definition.begin.bracket.curly.go\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.curly.go\"}},\"patterns\":[{\"include\":\"#struct_variables_types_fields\"},{\"include\":\"$self\"}]},\"struct_variables_types_fields\":{\"patterns\":[{\"include\":\"#struct_variable_types_fields_multi\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(?<=\\\\{)\\\\s*((?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}[]*.\\\\[\\\\w]+)\\\\s*(?=})\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.property.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(?<=\\\\{)\\\\s*((?:\\\\w+,\\\\s*)+{0,1}\\\\w+\\\\s+)((?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}[]*.\\\\[\\\\w]+)\\\\s*(?=})\"},{\"captures\":{\"1\":{\"patterns\":[{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.property.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"((?:\\\\w+,\\\\s*)+{0,1}\\\\w+\\\\s+)?((?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}[^/\\\\s]+;?)\"}]}},\"match\":\"(?<=\\\\{)((?:\\\\s*(?:(?:\\\\w+,\\\\s*)+{0,1}\\\\w+\\\\s+)?(?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}[^/\\\\s]+;?)+)\\\\s*(?=})\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"((?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}[*.\\\\w]+\\\\s*)(?:(?=[\\\"/`])|$)\"},{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.property.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#parameter-variable-types\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"\\\\b(\\\\w+(?:\\\\s*,\\\\s*\\\\b\\\\w+)*)\\\\s*([^\\\"/`]+)\"}]},\"support_functions\":{\"captures\":{\"1\":{\"name\":\"entity.name.function.support.go\"},\"2\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\d\\\\w*\",\"name\":\"invalid.illegal.identifier.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.function.support.go\"}]},\"3\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\{\",\"name\":\"punctuation.definition.begin.bracket.curly.go\"},{\"match\":\"}\",\"name\":\"punctuation.definition.end.bracket.curly.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(?:((?<=\\\\.)\\\\b\\\\w+)|\\\\b(\\\\w+))(?<brackets>\\\\[(?:[^]\\\\[]|\\\\g<brackets>)*])?(?=\\\\()\"},\"switch_types\":{\"begin\":\"(?<=\\\\bswitch\\\\b)\\\\s*(\\\\w+\\\\s*:=)?\\\\s*([-\\\\]%\\\\&(-+./<>\\\\[|\\\\w]+)(\\\\.\\\\(\\\\btype\\\\b\\\\)\\\\s*)(\\\\{)\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#operators\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.assignment.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#support_functions\"},{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.go\"}]},\"3\":{\"patterns\":[{\"include\":\"#delimiters\"},{\"include\":\"#brackets\"},{\"match\":\"\\\\btype\\\\b\",\"name\":\"keyword.type.go\"}]},\"4\":{\"name\":\"punctuation.definition.begin.bracket.curly.go\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.curly.go\"}},\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.control.go\"},\"2\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},\"3\":{\"name\":\"punctuation.other.colon.go\"},\"4\":{\"patterns\":[{\"include\":\"#comments\"}]}},\"match\":\"^\\\\s*\\\\b(case)\\\\b\\\\s+([!*,.<=>\\\\w\\\\s]+)(:)(\\\\s*/[*/]\\\\s*.*)?$\"},{\"begin\":\"\\\\bcase\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.control.go\"}},\"end\":\":\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.other.colon.go\"}},\"patterns\":[{\"include\":\"#type-declarations\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]},{\"include\":\"$self\"}]},\"switch_variables\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.control.go\"},\"2\":{\"patterns\":[{\"include\":\"#type-declarations\"},{\"include\":\"#support_functions\"},{\"include\":\"#variable_assignment\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.go\"}]}},\"match\":\"^\\\\s*\\\\b(case)\\\\b\\\\s+([\\\\s\\\\S]+:\\\\s*(?:/[*/].*)?)$\"},{\"begin\":\"(?<=\\\\bswitch\\\\b)\\\\s*((?:[.\\\\w]+(?:\\\\s*[-!%\\\\&+,/:<=>|]+\\\\s*[.\\\\w]+)*\\\\s*[-!%\\\\&+,/:<=>|]+)?\\\\s*[-\\\\]%\\\\&(-+./<>\\\\[|\\\\w]+{0,1}\\\\s*(?:;\\\\s*[-\\\\]%\\\\&(-+./<>\\\\[|\\\\w]+\\\\s*)?)(\\\\{)\",\"beginCaptures\":{\"1\":{\"patterns\":[{\"include\":\"#support_functions\"},{\"include\":\"#type-declarations\"},{\"include\":\"#variable_assignment\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.go\"}]},\"2\":{\"name\":\"punctuation.definition.begin.bracket.curly.go\"}},\"end\":\"}\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.curly.go\"}},\"patterns\":[{\"begin\":\"\\\\bcase\\\\b\",\"beginCaptures\":{\"0\":{\"name\":\"keyword.control.go\"}},\"end\":\":\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.other.colon.go\"}},\"patterns\":[{\"include\":\"#support_functions\"},{\"include\":\"#type-declarations\"},{\"include\":\"#variable_assignment\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.go\"}]},{\"include\":\"$self\"}]}]},\"syntax_errors\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"invalid.illegal.slice.go\"}},\"match\":\"\\\\[](\\\\s+)\"},{\"match\":\"\\\\b0[0-7]*[89]\\\\d*\\\\b\",\"name\":\"invalid.illegal.numeric.go\"}]},\"terminators\":{\"match\":\";\",\"name\":\"punctuation.terminator.go\"},\"type-declarations\":{\"patterns\":[{\"include\":\"#language_constants\"},{\"include\":\"#comments\"},{\"include\":\"#map_types\"},{\"include\":\"#brackets\"},{\"include\":\"#delimiters\"},{\"include\":\"#keywords\"},{\"include\":\"#operators\"},{\"include\":\"#runes\"},{\"include\":\"#storage_types\"},{\"include\":\"#raw_string_literals\"},{\"include\":\"#string_literals\"},{\"include\":\"#numeric_literals\"},{\"include\":\"#terminators\"}]},\"type-declarations-without-brackets\":{\"patterns\":[{\"include\":\"#language_constants\"},{\"include\":\"#comments\"},{\"include\":\"#map_types\"},{\"include\":\"#delimiters\"},{\"include\":\"#keywords\"},{\"include\":\"#operators\"},{\"include\":\"#runes\"},{\"include\":\"#storage_types\"},{\"include\":\"#raw_string_literals\"},{\"include\":\"#string_literals\"},{\"include\":\"#numeric_literals\"},{\"include\":\"#terminators\"}]},\"type_assertion_inline\":{\"captures\":{\"1\":{\"name\":\"keyword.type.go\"},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"match\":\"\\\\(\",\"name\":\"punctuation.definition.begin.bracket.round.go\"},{\"match\":\"\\\\)\",\"name\":\"punctuation.definition.end.bracket.round.go\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\{\",\"name\":\"punctuation.definition.begin.bracket.curly.go\"},{\"match\":\"}\",\"name\":\"punctuation.definition.end.bracket.curly.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(?<=\\\\.\\\\()(?:\\\\b(type)\\\\b|((?:\\\\s*[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+{0,1}[]*\\\\[]+{0,1}[.\\\\w]+(?:\\\\[(?:[]*.\\\\[{}\\\\w]+(?:,\\\\s*[]*.\\\\[{}\\\\w]+)*)?])?))(?=\\\\))\"},\"var_assignment\":{\"patterns\":[{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#delimiters\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.assignment.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#generic_types\"},{\"match\":\"\\\\(\",\"name\":\"punctuation.definition.begin.bracket.round.go\"},{\"match\":\"\\\\)\",\"name\":\"punctuation.definition.end.bracket.round.go\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"(?<=\\\\bvar\\\\b)\\\\s*\\\\b([.\\\\w]+(?:,\\\\s*[.\\\\w]+)*)\\\\s*((?:(?:[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+(?:\\\\([^)]+\\\\))?)?(?![]*\\\\[]+{0,1}\\\\b(?:struct|func|map)\\\\b)(?:[]*.\\\\[\\\\w]+(?:,\\\\s*[]*.\\\\[\\\\w]+)*)?\\\\s*=?)?\"},{\"begin\":\"(?<=\\\\bvar\\\\b)\\\\s*(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.begin.bracket.round.go\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.end.bracket.round.go\"}},\"patterns\":[{\"captures\":{\"1\":{\"patterns\":[{\"include\":\"#delimiters\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.assignment.go\"}]},\"2\":{\"patterns\":[{\"include\":\"#type-declarations-without-brackets\"},{\"include\":\"#generic_types\"},{\"match\":\"\\\\(\",\"name\":\"punctuation.definition.begin.bracket.round.go\"},{\"match\":\"\\\\)\",\"name\":\"punctuation.definition.end.bracket.round.go\"},{\"match\":\"\\\\[\",\"name\":\"punctuation.definition.begin.bracket.square.go\"},{\"match\":\"]\",\"name\":\"punctuation.definition.end.bracket.square.go\"},{\"match\":\"\\\\w+\",\"name\":\"entity.name.type.go\"}]}},\"match\":\"^\\\\s*\\\\b([.\\\\w]+(?:,\\\\s*[.\\\\w]+)*)\\\\s*((?:(?:[]*\\\\[]+{0,1}(?:<-\\\\s*)?\\\\bchan\\\\b(?:\\\\s*<-)?\\\\s*)+(?:\\\\([^)]+\\\\))?)?(?![]*\\\\[]+{0,1}\\\\b(?:struct|func|map)\\\\b)(?:[]*.\\\\[\\\\w]+(?:,\\\\s*[]*.\\\\[\\\\w]+)*)?\\\\s*=?)?\"},{\"include\":\"$self\"}]}]},\"variable_assignment\":{\"patterns\":[{\"captures\":{\"0\":{\"patterns\":[{\"include\":\"#delimiters\"},{\"match\":\"\\\\d\\\\w*\",\"name\":\"invalid.illegal.identifier.go\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.assignment.go\"}]}},\"match\":\"\\\\b\\\\w+(?:,\\\\s*\\\\w+)*(?=\\\\s*:=)\"},{\"captures\":{\"0\":{\"patterns\":[{\"include\":\"#delimiters\"},{\"include\":\"#operators\"},{\"match\":\"\\\\d\\\\w*\",\"name\":\"invalid.illegal.identifier.go\"},{\"match\":\"\\\\w+\",\"name\":\"variable.other.assignment.go\"}]}},\"match\":\"\\\\b[*.\\\\w]+(?:,\\\\s*[*.\\\\w]+)*(?=\\\\s*=(?!=))\"}]}},\"scopeName\":\"source.go\"}"))];
2
+ export { go_default as default };