ace-oqc 1.4.13

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 (401) hide show
  1. package/package.json +7 -0
  2. package/src-noconflict/ace.js +21402 -0
  3. package/src-noconflict/ext-beautify.js +331 -0
  4. package/src-noconflict/ext-elastic_tabstops_lite.js +277 -0
  5. package/src-noconflict/ext-emmet.js +1331 -0
  6. package/src-noconflict/ext-error_marker.js +9 -0
  7. package/src-noconflict/ext-keybinding_menu.js +193 -0
  8. package/src-noconflict/ext-language_tools.js +2166 -0
  9. package/src-noconflict/ext-linking.js +64 -0
  10. package/src-noconflict/ext-modelist.js +248 -0
  11. package/src-noconflict/ext-options.js +799 -0
  12. package/src-noconflict/ext-prompt.js +2806 -0
  13. package/src-noconflict/ext-rtl.js +122 -0
  14. package/src-noconflict/ext-searchbox.js +514 -0
  15. package/src-noconflict/ext-settings_menu.js +820 -0
  16. package/src-noconflict/ext-spellcheck.js +73 -0
  17. package/src-noconflict/ext-split.js +207 -0
  18. package/src-noconflict/ext-static_highlight.js +229 -0
  19. package/src-noconflict/ext-statusbar.js +56 -0
  20. package/src-noconflict/ext-textarea.js +430 -0
  21. package/src-noconflict/ext-themelist.js +67 -0
  22. package/src-noconflict/ext-whitespace.js +213 -0
  23. package/src-noconflict/keybinding-emacs.js +1169 -0
  24. package/src-noconflict/keybinding-sublime.js +422 -0
  25. package/src-noconflict/keybinding-vim.js +6198 -0
  26. package/src-noconflict/mode-abap.js +221 -0
  27. package/src-noconflict/mode-abc.js +271 -0
  28. package/src-noconflict/mode-actionscript.js +275 -0
  29. package/src-noconflict/mode-ada.js +137 -0
  30. package/src-noconflict/mode-apache_conf.js +363 -0
  31. package/src-noconflict/mode-apex.js +457 -0
  32. package/src-noconflict/mode-applescript.js +278 -0
  33. package/src-noconflict/mode-aql.js +102 -0
  34. package/src-noconflict/mode-asciidoc.js +349 -0
  35. package/src-noconflict/mode-asl.js +422 -0
  36. package/src-noconflict/mode-assembly_x86.js +193 -0
  37. package/src-noconflict/mode-autohotkey.js +244 -0
  38. package/src-noconflict/mode-batchfile.js +230 -0
  39. package/src-noconflict/mode-c9search.js +293 -0
  40. package/src-noconflict/mode-c_cpp.js +503 -0
  41. package/src-noconflict/mode-cirru.js +210 -0
  42. package/src-noconflict/mode-clojure.js +315 -0
  43. package/src-noconflict/mode-cobol.js +101 -0
  44. package/src-noconflict/mode-coffee.js +400 -0
  45. package/src-noconflict/mode-coldfusion.js +2596 -0
  46. package/src-noconflict/mode-crystal.js +642 -0
  47. package/src-noconflict/mode-csharp.js +502 -0
  48. package/src-noconflict/mode-csound_document.js +4105 -0
  49. package/src-noconflict/mode-csound_orchestra.js +3035 -0
  50. package/src-noconflict/mode-csound_score.js +462 -0
  51. package/src-noconflict/mode-csp.js +59 -0
  52. package/src-noconflict/mode-css.js +720 -0
  53. package/src-noconflict/mode-curly.js +2564 -0
  54. package/src-noconflict/mode-d.js +520 -0
  55. package/src-noconflict/mode-dart.js +715 -0
  56. package/src-noconflict/mode-diff.js +147 -0
  57. package/src-noconflict/mode-django.js +2595 -0
  58. package/src-noconflict/mode-dockerfile.js +500 -0
  59. package/src-noconflict/mode-dot.js +417 -0
  60. package/src-noconflict/mode-drools.js +498 -0
  61. package/src-noconflict/mode-edifact.js +166 -0
  62. package/src-noconflict/mode-eiffel.js +135 -0
  63. package/src-noconflict/mode-ejs.js +3533 -0
  64. package/src-noconflict/mode-elixir.js +501 -0
  65. package/src-noconflict/mode-elm.js +306 -0
  66. package/src-noconflict/mode-erlang.js +1010 -0
  67. package/src-noconflict/mode-forth.js +297 -0
  68. package/src-noconflict/mode-fortran.js +430 -0
  69. package/src-noconflict/mode-fsharp.js +316 -0
  70. package/src-noconflict/mode-fsl.js +259 -0
  71. package/src-noconflict/mode-ftl.js +1193 -0
  72. package/src-noconflict/mode-gcode.js +93 -0
  73. package/src-noconflict/mode-gherkin.js +168 -0
  74. package/src-noconflict/mode-gitignore.js +59 -0
  75. package/src-noconflict/mode-glsl.js +580 -0
  76. package/src-noconflict/mode-gobstones.js +1090 -0
  77. package/src-noconflict/mode-golang.js +413 -0
  78. package/src-noconflict/mode-graphqlschema.js +214 -0
  79. package/src-noconflict/mode-groovy.js +989 -0
  80. package/src-noconflict/mode-haml.js +1873 -0
  81. package/src-noconflict/mode-handlebars.js +2622 -0
  82. package/src-noconflict/mode-haskell.js +380 -0
  83. package/src-noconflict/mode-haskell_cabal.js +141 -0
  84. package/src-noconflict/mode-haxe.js +386 -0
  85. package/src-noconflict/mode-hjson.js +353 -0
  86. package/src-noconflict/mode-html.js +2509 -0
  87. package/src-noconflict/mode-html_elixir.js +3088 -0
  88. package/src-noconflict/mode-html_ruby.js +3550 -0
  89. package/src-noconflict/mode-ini.js +162 -0
  90. package/src-noconflict/mode-io.js +248 -0
  91. package/src-noconflict/mode-jack.js +346 -0
  92. package/src-noconflict/mode-jade.js +2025 -0
  93. package/src-noconflict/mode-java.js +1038 -0
  94. package/src-noconflict/mode-javascript.js +798 -0
  95. package/src-noconflict/mode-json.js +329 -0
  96. package/src-noconflict/mode-jsoniq.js +2632 -0
  97. package/src-noconflict/mode-jsp.js +1433 -0
  98. package/src-noconflict/mode-jssm.js +325 -0
  99. package/src-noconflict/mode-jsx.js +411 -0
  100. package/src-noconflict/mode-julia.js +303 -0
  101. package/src-noconflict/mode-kotlin.js +797 -0
  102. package/src-noconflict/mode-latex.js +296 -0
  103. package/src-noconflict/mode-less.js +839 -0
  104. package/src-noconflict/mode-liquid.js +2742 -0
  105. package/src-noconflict/mode-lisp.js +112 -0
  106. package/src-noconflict/mode-livescript.js +279 -0
  107. package/src-noconflict/mode-logiql.js +317 -0
  108. package/src-noconflict/mode-logtalk.js +352 -0
  109. package/src-noconflict/mode-lsl.js +343 -0
  110. package/src-noconflict/mode-lua.js +452 -0
  111. package/src-noconflict/mode-luapage.js +3028 -0
  112. package/src-noconflict/mode-lucene.js +154 -0
  113. package/src-noconflict/mode-makefile.js +412 -0
  114. package/src-noconflict/mode-markdown.js +3194 -0
  115. package/src-noconflict/mode-mask.js +1803 -0
  116. package/src-noconflict/mode-matlab.js +263 -0
  117. package/src-noconflict/mode-maze.js +292 -0
  118. package/src-noconflict/mode-mel.js +263 -0
  119. package/src-noconflict/mode-mixal.js +122 -0
  120. package/src-noconflict/mode-mushcode.js +681 -0
  121. package/src-noconflict/mode-mysql.js +167 -0
  122. package/src-noconflict/mode-nginx.js +298 -0
  123. package/src-noconflict/mode-nim.js +363 -0
  124. package/src-noconflict/mode-nix.js +647 -0
  125. package/src-noconflict/mode-nsis.js +312 -0
  126. package/src-noconflict/mode-objectivec.js +740 -0
  127. package/src-noconflict/mode-ocaml.js +421 -0
  128. package/src-noconflict/mode-pascal.js +223 -0
  129. package/src-noconflict/mode-perl.js +381 -0
  130. package/src-noconflict/mode-pgsql.js +1743 -0
  131. package/src-noconflict/mode-php.js +13110 -0
  132. package/src-noconflict/mode-php_laravel_blade.js +13311 -0
  133. package/src-noconflict/mode-pig.js +310 -0
  134. package/src-noconflict/mode-plain_text.js +32 -0
  135. package/src-noconflict/mode-powershell.js +418 -0
  136. package/src-noconflict/mode-praat.js +478 -0
  137. package/src-noconflict/mode-prolog.js +371 -0
  138. package/src-noconflict/mode-properties.js +80 -0
  139. package/src-noconflict/mode-protobuf.js +593 -0
  140. package/src-noconflict/mode-puppet.js +368 -0
  141. package/src-noconflict/mode-python.js +508 -0
  142. package/src-noconflict/mode-r.js +312 -0
  143. package/src-noconflict/mode-razor.js +2875 -0
  144. package/src-noconflict/mode-rdoc.js +243 -0
  145. package/src-noconflict/mode-red.js +450 -0
  146. package/src-noconflict/mode-redshift.js +360 -0
  147. package/src-noconflict/mode-rhtml.js +2808 -0
  148. package/src-noconflict/mode-rst.js +257 -0
  149. package/src-noconflict/mode-ruby.js +1003 -0
  150. package/src-noconflict/mode-rust.js +282 -0
  151. package/src-noconflict/mode-sass.js +529 -0
  152. package/src-noconflict/mode-scad.js +414 -0
  153. package/src-noconflict/mode-scala.js +984 -0
  154. package/src-noconflict/mode-scheme.js +232 -0
  155. package/src-noconflict/mode-scss.js +873 -0
  156. package/src-noconflict/mode-sh.js +449 -0
  157. package/src-noconflict/mode-sjs.js +1015 -0
  158. package/src-noconflict/mode-slim.js +5240 -0
  159. package/src-noconflict/mode-smarty.js +2635 -0
  160. package/src-noconflict/mode-snippets.js +207 -0
  161. package/src-noconflict/mode-soy_template.js +2848 -0
  162. package/src-noconflict/mode-space.js +167 -0
  163. package/src-noconflict/mode-sparql.js +320 -0
  164. package/src-noconflict/mode-sql.js +271 -0
  165. package/src-noconflict/mode-sqlserver.js +445 -0
  166. package/src-noconflict/mode-stylus.js +472 -0
  167. package/src-noconflict/mode-svg.js +1582 -0
  168. package/src-noconflict/mode-swift.js +395 -0
  169. package/src-noconflict/mode-tcl.js +387 -0
  170. package/src-noconflict/mode-terraform.js +400 -0
  171. package/src-noconflict/mode-tex.js +160 -0
  172. package/src-noconflict/mode-text.js +9 -0
  173. package/src-noconflict/mode-textile.js +150 -0
  174. package/src-noconflict/mode-toml.js +153 -0
  175. package/src-noconflict/mode-tsx.js +888 -0
  176. package/src-noconflict/mode-turtle.js +296 -0
  177. package/src-noconflict/mode-twig.js +2693 -0
  178. package/src-noconflict/mode-typescript.js +869 -0
  179. package/src-noconflict/mode-vala.js +677 -0
  180. package/src-noconflict/mode-vbscript.js +635 -0
  181. package/src-noconflict/mode-velocity.js +2792 -0
  182. package/src-noconflict/mode-verilog.js +118 -0
  183. package/src-noconflict/mode-vhdl.js +116 -0
  184. package/src-noconflict/mode-visualforce.js +2640 -0
  185. package/src-noconflict/mode-wollok.js +914 -0
  186. package/src-noconflict/mode-xml.js +676 -0
  187. package/src-noconflict/mode-xquery.js +2644 -0
  188. package/src-noconflict/mode-yaml.js +330 -0
  189. package/src-noconflict/mode-zeek.js +539 -0
  190. package/src-noconflict/qurator-mode.js +120 -0
  191. package/src-noconflict/qurator-worker.js +91 -0
  192. package/src-noconflict/snippets/abap.js +9 -0
  193. package/src-noconflict/snippets/abc.js +45 -0
  194. package/src-noconflict/snippets/actionscript.js +171 -0
  195. package/src-noconflict/snippets/ada.js +9 -0
  196. package/src-noconflict/snippets/apache_conf.js +9 -0
  197. package/src-noconflict/snippets/apex.js +9 -0
  198. package/src-noconflict/snippets/applescript.js +9 -0
  199. package/src-noconflict/snippets/aql.js +9 -0
  200. package/src-noconflict/snippets/asciidoc.js +9 -0
  201. package/src-noconflict/snippets/asl.js +9 -0
  202. package/src-noconflict/snippets/assembly_x86.js +9 -0
  203. package/src-noconflict/snippets/autohotkey.js +9 -0
  204. package/src-noconflict/snippets/batchfile.js +9 -0
  205. package/src-noconflict/snippets/c9search.js +9 -0
  206. package/src-noconflict/snippets/c_cpp.js +145 -0
  207. package/src-noconflict/snippets/cirru.js +9 -0
  208. package/src-noconflict/snippets/clojure.js +104 -0
  209. package/src-noconflict/snippets/cobol.js +9 -0
  210. package/src-noconflict/snippets/coffee.js +109 -0
  211. package/src-noconflict/snippets/coldfusion.js +9 -0
  212. package/src-noconflict/snippets/crystal.js +9 -0
  213. package/src-noconflict/snippets/csharp.js +9 -0
  214. package/src-noconflict/snippets/csound_document.js +24 -0
  215. package/src-noconflict/snippets/csound_orchestra.js +61 -0
  216. package/src-noconflict/snippets/csound_score.js +9 -0
  217. package/src-noconflict/snippets/csp.js +9 -0
  218. package/src-noconflict/snippets/css.js +981 -0
  219. package/src-noconflict/snippets/curly.js +9 -0
  220. package/src-noconflict/snippets/d.js +9 -0
  221. package/src-noconflict/snippets/dart.js +97 -0
  222. package/src-noconflict/snippets/diff.js +25 -0
  223. package/src-noconflict/snippets/django.js +122 -0
  224. package/src-noconflict/snippets/dockerfile.js +9 -0
  225. package/src-noconflict/snippets/dot.js +9 -0
  226. package/src-noconflict/snippets/drools.js +33 -0
  227. package/src-noconflict/snippets/edifact.js +254 -0
  228. package/src-noconflict/snippets/eiffel.js +9 -0
  229. package/src-noconflict/snippets/ejs.js +9 -0
  230. package/src-noconflict/snippets/elixir.js +9 -0
  231. package/src-noconflict/snippets/elm.js +9 -0
  232. package/src-noconflict/snippets/erlang.js +174 -0
  233. package/src-noconflict/snippets/forth.js +9 -0
  234. package/src-noconflict/snippets/fortran.js +9 -0
  235. package/src-noconflict/snippets/fsharp.js +9 -0
  236. package/src-noconflict/snippets/fsl.js +14 -0
  237. package/src-noconflict/snippets/ftl.js +9 -0
  238. package/src-noconflict/snippets/gcode.js +9 -0
  239. package/src-noconflict/snippets/gherkin.js +9 -0
  240. package/src-noconflict/snippets/gitignore.js +9 -0
  241. package/src-noconflict/snippets/glsl.js +9 -0
  242. package/src-noconflict/snippets/gobstones.js +1718 -0
  243. package/src-noconflict/snippets/golang.js +9 -0
  244. package/src-noconflict/snippets/graphqlschema.js +46 -0
  245. package/src-noconflict/snippets/groovy.js +9 -0
  246. package/src-noconflict/snippets/haml.js +34 -0
  247. package/src-noconflict/snippets/handlebars.js +9 -0
  248. package/src-noconflict/snippets/haskell.js +96 -0
  249. package/src-noconflict/snippets/haskell_cabal.js +9 -0
  250. package/src-noconflict/snippets/haxe.js +9 -0
  251. package/src-noconflict/snippets/hjson.js +9 -0
  252. package/src-noconflict/snippets/html.js +867 -0
  253. package/src-noconflict/snippets/html_elixir.js +9 -0
  254. package/src-noconflict/snippets/html_ruby.js +9 -0
  255. package/src-noconflict/snippets/ini.js +9 -0
  256. package/src-noconflict/snippets/io.js +76 -0
  257. package/src-noconflict/snippets/jack.js +9 -0
  258. package/src-noconflict/snippets/jade.js +9 -0
  259. package/src-noconflict/snippets/java.js +254 -0
  260. package/src-noconflict/snippets/javascript.js +209 -0
  261. package/src-noconflict/snippets/json.js +9 -0
  262. package/src-noconflict/snippets/jsoniq.js +75 -0
  263. package/src-noconflict/snippets/jsp.js +113 -0
  264. package/src-noconflict/snippets/jssm.js +9 -0
  265. package/src-noconflict/snippets/jsx.js +9 -0
  266. package/src-noconflict/snippets/julia.js +9 -0
  267. package/src-noconflict/snippets/kotlin.js +9 -0
  268. package/src-noconflict/snippets/latex.js +9 -0
  269. package/src-noconflict/snippets/less.js +9 -0
  270. package/src-noconflict/snippets/liquid.js +895 -0
  271. package/src-noconflict/snippets/lisp.js +9 -0
  272. package/src-noconflict/snippets/livescript.js +9 -0
  273. package/src-noconflict/snippets/logiql.js +9 -0
  274. package/src-noconflict/snippets/logtalk.js +9 -0
  275. package/src-noconflict/snippets/lsl.js +1246 -0
  276. package/src-noconflict/snippets/lua.js +35 -0
  277. package/src-noconflict/snippets/luapage.js +9 -0
  278. package/src-noconflict/snippets/lucene.js +9 -0
  279. package/src-noconflict/snippets/makefile.js +18 -0
  280. package/src-noconflict/snippets/markdown.js +102 -0
  281. package/src-noconflict/snippets/mask.js +9 -0
  282. package/src-noconflict/snippets/matlab.js +9 -0
  283. package/src-noconflict/snippets/maze.js +23 -0
  284. package/src-noconflict/snippets/mel.js +9 -0
  285. package/src-noconflict/snippets/mixal.js +9 -0
  286. package/src-noconflict/snippets/mushcode.js +9 -0
  287. package/src-noconflict/snippets/mysql.js +9 -0
  288. package/src-noconflict/snippets/nginx.js +9 -0
  289. package/src-noconflict/snippets/nim.js +9 -0
  290. package/src-noconflict/snippets/nix.js +9 -0
  291. package/src-noconflict/snippets/nsis.js +9 -0
  292. package/src-noconflict/snippets/objectivec.js +9 -0
  293. package/src-noconflict/snippets/ocaml.js +9 -0
  294. package/src-noconflict/snippets/pascal.js +9 -0
  295. package/src-noconflict/snippets/perl.js +361 -0
  296. package/src-noconflict/snippets/pgsql.js +9 -0
  297. package/src-noconflict/snippets/php.js +397 -0
  298. package/src-noconflict/snippets/php_laravel_blade.js +9 -0
  299. package/src-noconflict/snippets/pig.js +9 -0
  300. package/src-noconflict/snippets/plain_text.js +9 -0
  301. package/src-noconflict/snippets/powershell.js +9 -0
  302. package/src-noconflict/snippets/praat.js +9 -0
  303. package/src-noconflict/snippets/prolog.js +9 -0
  304. package/src-noconflict/snippets/properties.js +9 -0
  305. package/src-noconflict/snippets/protobuf.js +9 -0
  306. package/src-noconflict/snippets/puppet.js +9 -0
  307. package/src-noconflict/snippets/python.js +172 -0
  308. package/src-noconflict/snippets/r.js +135 -0
  309. package/src-noconflict/snippets/razor.js +17 -0
  310. package/src-noconflict/snippets/rdoc.js +9 -0
  311. package/src-noconflict/snippets/red.js +9 -0
  312. package/src-noconflict/snippets/redshift.js +9 -0
  313. package/src-noconflict/snippets/rhtml.js +9 -0
  314. package/src-noconflict/snippets/rst.js +36 -0
  315. package/src-noconflict/snippets/ruby.js +942 -0
  316. package/src-noconflict/snippets/rust.js +9 -0
  317. package/src-noconflict/snippets/sass.js +9 -0
  318. package/src-noconflict/snippets/scad.js +9 -0
  319. package/src-noconflict/snippets/scala.js +9 -0
  320. package/src-noconflict/snippets/scheme.js +9 -0
  321. package/src-noconflict/snippets/scss.js +9 -0
  322. package/src-noconflict/snippets/sh.js +97 -0
  323. package/src-noconflict/snippets/sjs.js +9 -0
  324. package/src-noconflict/snippets/slim.js +9 -0
  325. package/src-noconflict/snippets/smarty.js +9 -0
  326. package/src-noconflict/snippets/snippets.js +23 -0
  327. package/src-noconflict/snippets/soy_template.js +9 -0
  328. package/src-noconflict/snippets/space.js +9 -0
  329. package/src-noconflict/snippets/sparql.js +9 -0
  330. package/src-noconflict/snippets/sql.js +40 -0
  331. package/src-noconflict/snippets/sqlserver.js +83 -0
  332. package/src-noconflict/snippets/stylus.js +9 -0
  333. package/src-noconflict/snippets/svg.js +9 -0
  334. package/src-noconflict/snippets/swift.js +9 -0
  335. package/src-noconflict/snippets/tcl.js +106 -0
  336. package/src-noconflict/snippets/terraform.js +9 -0
  337. package/src-noconflict/snippets/tex.js +204 -0
  338. package/src-noconflict/snippets/text.js +9 -0
  339. package/src-noconflict/snippets/textile.js +44 -0
  340. package/src-noconflict/snippets/toml.js +9 -0
  341. package/src-noconflict/snippets/tsx.js +9 -0
  342. package/src-noconflict/snippets/turtle.js +9 -0
  343. package/src-noconflict/snippets/twig.js +9 -0
  344. package/src-noconflict/snippets/typescript.js +9 -0
  345. package/src-noconflict/snippets/vala.js +200 -0
  346. package/src-noconflict/snippets/vbscript.js +9 -0
  347. package/src-noconflict/snippets/velocity.js +43 -0
  348. package/src-noconflict/snippets/verilog.js +9 -0
  349. package/src-noconflict/snippets/vhdl.js +9 -0
  350. package/src-noconflict/snippets/visualforce.js +9 -0
  351. package/src-noconflict/snippets/wollok.js +98 -0
  352. package/src-noconflict/snippets/xml.js +9 -0
  353. package/src-noconflict/snippets/xquery.js +75 -0
  354. package/src-noconflict/snippets/yaml.js +9 -0
  355. package/src-noconflict/snippets/zeek.js +9 -0
  356. package/src-noconflict/theme-ambiance.js +185 -0
  357. package/src-noconflict/theme-chaos.js +163 -0
  358. package/src-noconflict/theme-chrome.js +135 -0
  359. package/src-noconflict/theme-clouds.js +102 -0
  360. package/src-noconflict/theme-clouds_midnight.js +103 -0
  361. package/src-noconflict/theme-cobalt.js +120 -0
  362. package/src-noconflict/theme-crimson_editor.js +125 -0
  363. package/src-noconflict/theme-dawn.js +115 -0
  364. package/src-noconflict/theme-dracula.js +135 -0
  365. package/src-noconflict/theme-dreamweaver.js +148 -0
  366. package/src-noconflict/theme-eclipse.js +105 -0
  367. package/src-noconflict/theme-github.js +110 -0
  368. package/src-noconflict/theme-gob.js +119 -0
  369. package/src-noconflict/theme-gruvbox.js +89 -0
  370. package/src-noconflict/theme-idle_fingers.js +103 -0
  371. package/src-noconflict/theme-iplastic.js +128 -0
  372. package/src-noconflict/theme-katzenmilch.js +128 -0
  373. package/src-noconflict/theme-kr_theme.js +111 -0
  374. package/src-noconflict/theme-kuroir.js +68 -0
  375. package/src-noconflict/theme-merbivore.js +102 -0
  376. package/src-noconflict/theme-merbivore_soft.js +103 -0
  377. package/src-noconflict/theme-mono_industrial.js +114 -0
  378. package/src-noconflict/theme-monokai.js +112 -0
  379. package/src-noconflict/theme-pastel_on_dark.js +115 -0
  380. package/src-noconflict/theme-solarized_dark.js +95 -0
  381. package/src-noconflict/theme-solarized_light.js +98 -0
  382. package/src-noconflict/theme-sqlserver.js +145 -0
  383. package/src-noconflict/theme-terminal.js +121 -0
  384. package/src-noconflict/theme-textmate.js +137 -0
  385. package/src-noconflict/theme-tomorrow.js +115 -0
  386. package/src-noconflict/theme-tomorrow_night.js +115 -0
  387. package/src-noconflict/theme-tomorrow_night_blue.js +113 -0
  388. package/src-noconflict/theme-tomorrow_night_bright.js +128 -0
  389. package/src-noconflict/theme-tomorrow_night_eighties.js +115 -0
  390. package/src-noconflict/theme-twilight.js +116 -0
  391. package/src-noconflict/theme-vibrant_ink.js +101 -0
  392. package/src-noconflict/theme-xcode.js +95 -0
  393. package/src-noconflict/worker-coffee.js +1470 -0
  394. package/src-noconflict/worker-css.js +9000 -0
  395. package/src-noconflict/worker-html.js +10922 -0
  396. package/src-noconflict/worker-javascript.js +15001 -0
  397. package/src-noconflict/worker-json.js +1715 -0
  398. package/src-noconflict/worker-lua.js +3608 -0
  399. package/src-noconflict/worker-php.js +3687 -0
  400. package/src-noconflict/worker-xml.js +3208 -0
  401. package/src-noconflict/worker-xquery.js +57668 -0
@@ -0,0 +1,869 @@
1
+ ace.define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
2
+ "use strict";
3
+
4
+ var oop = require("../lib/oop");
5
+ var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
6
+
7
+ var DocCommentHighlightRules = function() {
8
+ this.$rules = {
9
+ "start" : [ {
10
+ token : "comment.doc.tag",
11
+ regex : "@[\\w\\d_]+" // TODO: fix email addresses
12
+ },
13
+ DocCommentHighlightRules.getTagRule(),
14
+ {
15
+ defaultToken : "comment.doc",
16
+ caseInsensitive: true
17
+ }]
18
+ };
19
+ };
20
+
21
+ oop.inherits(DocCommentHighlightRules, TextHighlightRules);
22
+
23
+ DocCommentHighlightRules.getTagRule = function(start) {
24
+ return {
25
+ token : "comment.doc.tag.storage.type",
26
+ regex : "\\b(?:TODO|FIXME|XXX|HACK)\\b"
27
+ };
28
+ };
29
+
30
+ DocCommentHighlightRules.getStartRule = function(start) {
31
+ return {
32
+ token : "comment.doc", // doc comment
33
+ regex : "\\/\\*(?=\\*)",
34
+ next : start
35
+ };
36
+ };
37
+
38
+ DocCommentHighlightRules.getEndRule = function (start) {
39
+ return {
40
+ token : "comment.doc", // closing comment
41
+ regex : "\\*\\/",
42
+ next : start
43
+ };
44
+ };
45
+
46
+
47
+ exports.DocCommentHighlightRules = DocCommentHighlightRules;
48
+
49
+ });
50
+
51
+ ace.define("ace/mode/javascript_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/doc_comment_highlight_rules","ace/mode/text_highlight_rules"], function(require, exports, module) {
52
+ "use strict";
53
+
54
+ var oop = require("../lib/oop");
55
+ var DocCommentHighlightRules = require("./doc_comment_highlight_rules").DocCommentHighlightRules;
56
+ var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
57
+ var identifierRe = "[a-zA-Z\\$_\u00a1-\uffff][a-zA-Z\\d\\$_\u00a1-\uffff]*";
58
+
59
+ var JavaScriptHighlightRules = function(options) {
60
+ var keywordMapper = this.createKeywordMapper({
61
+ "variable.language":
62
+ "Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|" + // Constructors
63
+ "Namespace|QName|XML|XMLList|" + // E4X
64
+ "ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|" +
65
+ "Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|" +
66
+ "Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|" + // Errors
67
+ "SyntaxError|TypeError|URIError|" +
68
+ "decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|" + // Non-constructor functions
69
+ "isNaN|parseFloat|parseInt|" +
70
+ "JSON|Math|" + // Other
71
+ "this|arguments|prototype|window|document" , // Pseudo
72
+ "keyword":
73
+ "const|yield|import|get|set|async|await|" +
74
+ "break|case|catch|continue|default|delete|do|else|finally|for|function|" +
75
+ "if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|" +
76
+ "__parent__|__count__|escape|unescape|with|__proto__|" +
77
+ "class|enum|extends|super|export|implements|private|public|interface|package|protected|static",
78
+ "storage.type":
79
+ "const|let|var|function",
80
+ "constant.language":
81
+ "null|Infinity|NaN|undefined",
82
+ "support.function":
83
+ "alert",
84
+ "constant.language.boolean": "true|false"
85
+ }, "identifier");
86
+ var kwBeforeRe = "case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void";
87
+
88
+ var escapedRe = "\\\\(?:x[0-9a-fA-F]{2}|" + // hex
89
+ "u[0-9a-fA-F]{4}|" + // unicode
90
+ "u{[0-9a-fA-F]{1,6}}|" + // es6 unicode
91
+ "[0-2][0-7]{0,2}|" + // oct
92
+ "3[0-7][0-7]?|" + // oct
93
+ "[4-7][0-7]?|" + //oct
94
+ ".)";
95
+
96
+ this.$rules = {
97
+ "no_regex" : [
98
+ DocCommentHighlightRules.getStartRule("doc-start"),
99
+ comments("no_regex"),
100
+ {
101
+ token : "string",
102
+ regex : "'(?=.)",
103
+ next : "qstring"
104
+ }, {
105
+ token : "string",
106
+ regex : '"(?=.)',
107
+ next : "qqstring"
108
+ }, {
109
+ token : "constant.numeric", // hexadecimal, octal and binary
110
+ regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\b/
111
+ }, {
112
+ token : "constant.numeric", // decimal integers and floats
113
+ regex : /(?:\d\d*(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+\b)?/
114
+ }, {
115
+ token : [
116
+ "storage.type", "punctuation.operator", "support.function",
117
+ "punctuation.operator", "entity.name.function", "text","keyword.operator"
118
+ ],
119
+ regex : "(" + identifierRe + ")(\\.)(prototype)(\\.)(" + identifierRe +")(\\s*)(=)",
120
+ next: "function_arguments"
121
+ }, {
122
+ token : [
123
+ "storage.type", "punctuation.operator", "entity.name.function", "text",
124
+ "keyword.operator", "text", "storage.type", "text", "paren.lparen"
125
+ ],
126
+ regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",
127
+ next: "function_arguments"
128
+ }, {
129
+ token : [
130
+ "entity.name.function", "text", "keyword.operator", "text", "storage.type",
131
+ "text", "paren.lparen"
132
+ ],
133
+ regex : "(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",
134
+ next: "function_arguments"
135
+ }, {
136
+ token : [
137
+ "storage.type", "punctuation.operator", "entity.name.function", "text",
138
+ "keyword.operator", "text",
139
+ "storage.type", "text", "entity.name.function", "text", "paren.lparen"
140
+ ],
141
+ regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s+)(\\w+)(\\s*)(\\()",
142
+ next: "function_arguments"
143
+ }, {
144
+ token : [
145
+ "storage.type", "text", "entity.name.function", "text", "paren.lparen"
146
+ ],
147
+ regex : "(function)(\\s+)(" + identifierRe + ")(\\s*)(\\()",
148
+ next: "function_arguments"
149
+ }, {
150
+ token : [
151
+ "entity.name.function", "text", "punctuation.operator",
152
+ "text", "storage.type", "text", "paren.lparen"
153
+ ],
154
+ regex : "(" + identifierRe + ")(\\s*)(:)(\\s*)(function)(\\s*)(\\()",
155
+ next: "function_arguments"
156
+ }, {
157
+ token : [
158
+ "text", "text", "storage.type", "text", "paren.lparen"
159
+ ],
160
+ regex : "(:)(\\s*)(function)(\\s*)(\\()",
161
+ next: "function_arguments"
162
+ }, {
163
+ token : "keyword",
164
+ regex : "from(?=\\s*('|\"))"
165
+ }, {
166
+ token : "keyword",
167
+ regex : "(?:" + kwBeforeRe + ")\\b",
168
+ next : "start"
169
+ }, {
170
+ token : ["support.constant"],
171
+ regex : /that\b/
172
+ }, {
173
+ token : ["storage.type", "punctuation.operator", "support.function.firebug"],
174
+ regex : /(console)(\.)(warn|info|log|error|time|trace|timeEnd|assert)\b/
175
+ }, {
176
+ token : keywordMapper,
177
+ regex : identifierRe
178
+ }, {
179
+ token : "punctuation.operator",
180
+ regex : /[.](?![.])/,
181
+ next : "property"
182
+ }, {
183
+ token : "storage.type",
184
+ regex : /=>/,
185
+ next : "start"
186
+ }, {
187
+ token : "keyword.operator",
188
+ regex : /--|\+\+|\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\|\||\?:|[!$%&*+\-~\/^]=?/,
189
+ next : "start"
190
+ }, {
191
+ token : "punctuation.operator",
192
+ regex : /[?:,;.]/,
193
+ next : "start"
194
+ }, {
195
+ token : "paren.lparen",
196
+ regex : /[\[({]/,
197
+ next : "start"
198
+ }, {
199
+ token : "paren.rparen",
200
+ regex : /[\])}]/
201
+ }, {
202
+ token: "comment",
203
+ regex: /^#!.*$/
204
+ }
205
+ ],
206
+ property: [{
207
+ token : "text",
208
+ regex : "\\s+"
209
+ }, {
210
+ token : [
211
+ "storage.type", "punctuation.operator", "entity.name.function", "text",
212
+ "keyword.operator", "text",
213
+ "storage.type", "text", "entity.name.function", "text", "paren.lparen"
214
+ ],
215
+ regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(?:(\\s+)(\\w+))?(\\s*)(\\()",
216
+ next: "function_arguments"
217
+ }, {
218
+ token : "punctuation.operator",
219
+ regex : /[.](?![.])/
220
+ }, {
221
+ token : "support.function",
222
+ regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\b(?=\()/
223
+ }, {
224
+ token : "support.function.dom",
225
+ regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\b(?=\()/
226
+ }, {
227
+ token : "support.constant",
228
+ regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\b/
229
+ }, {
230
+ token : "identifier",
231
+ regex : identifierRe
232
+ }, {
233
+ regex: "",
234
+ token: "empty",
235
+ next: "no_regex"
236
+ }
237
+ ],
238
+ "start": [
239
+ DocCommentHighlightRules.getStartRule("doc-start"),
240
+ comments("start"),
241
+ {
242
+ token: "string.regexp",
243
+ regex: "\\/",
244
+ next: "regex"
245
+ }, {
246
+ token : "text",
247
+ regex : "\\s+|^$",
248
+ next : "start"
249
+ }, {
250
+ token: "empty",
251
+ regex: "",
252
+ next: "no_regex"
253
+ }
254
+ ],
255
+ "regex": [
256
+ {
257
+ token: "regexp.keyword.operator",
258
+ regex: "\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"
259
+ }, {
260
+ token: "string.regexp",
261
+ regex: "/[sxngimy]*",
262
+ next: "no_regex"
263
+ }, {
264
+ token : "invalid",
265
+ regex: /\{\d+\b,?\d*\}[+*]|[+*$^?][+*]|[$^][?]|\?{3,}/
266
+ }, {
267
+ token : "constant.language.escape",
268
+ regex: /\(\?[:=!]|\)|\{\d+\b,?\d*\}|[+*]\?|[()$^+*?.]/
269
+ }, {
270
+ token : "constant.language.delimiter",
271
+ regex: /\|/
272
+ }, {
273
+ token: "constant.language.escape",
274
+ regex: /\[\^?/,
275
+ next: "regex_character_class"
276
+ }, {
277
+ token: "empty",
278
+ regex: "$",
279
+ next: "no_regex"
280
+ }, {
281
+ defaultToken: "string.regexp"
282
+ }
283
+ ],
284
+ "regex_character_class": [
285
+ {
286
+ token: "regexp.charclass.keyword.operator",
287
+ regex: "\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"
288
+ }, {
289
+ token: "constant.language.escape",
290
+ regex: "]",
291
+ next: "regex"
292
+ }, {
293
+ token: "constant.language.escape",
294
+ regex: "-"
295
+ }, {
296
+ token: "empty",
297
+ regex: "$",
298
+ next: "no_regex"
299
+ }, {
300
+ defaultToken: "string.regexp.charachterclass"
301
+ }
302
+ ],
303
+ "function_arguments": [
304
+ {
305
+ token: "variable.parameter",
306
+ regex: identifierRe
307
+ }, {
308
+ token: "punctuation.operator",
309
+ regex: "[, ]+"
310
+ }, {
311
+ token: "punctuation.operator",
312
+ regex: "$"
313
+ }, {
314
+ token: "empty",
315
+ regex: "",
316
+ next: "no_regex"
317
+ }
318
+ ],
319
+ "qqstring" : [
320
+ {
321
+ token : "constant.language.escape",
322
+ regex : escapedRe
323
+ }, {
324
+ token : "string",
325
+ regex : "\\\\$",
326
+ consumeLineEnd : true
327
+ }, {
328
+ token : "string",
329
+ regex : '"|$',
330
+ next : "no_regex"
331
+ }, {
332
+ defaultToken: "string"
333
+ }
334
+ ],
335
+ "qstring" : [
336
+ {
337
+ token : "constant.language.escape",
338
+ regex : escapedRe
339
+ }, {
340
+ token : "string",
341
+ regex : "\\\\$",
342
+ consumeLineEnd : true
343
+ }, {
344
+ token : "string",
345
+ regex : "'|$",
346
+ next : "no_regex"
347
+ }, {
348
+ defaultToken: "string"
349
+ }
350
+ ]
351
+ };
352
+
353
+
354
+ if (!options || !options.noES6) {
355
+ this.$rules.no_regex.unshift({
356
+ regex: "[{}]", onMatch: function(val, state, stack) {
357
+ this.next = val == "{" ? this.nextState : "";
358
+ if (val == "{" && stack.length) {
359
+ stack.unshift("start", state);
360
+ }
361
+ else if (val == "}" && stack.length) {
362
+ stack.shift();
363
+ this.next = stack.shift();
364
+ if (this.next.indexOf("string") != -1 || this.next.indexOf("jsx") != -1)
365
+ return "paren.quasi.end";
366
+ }
367
+ return val == "{" ? "paren.lparen" : "paren.rparen";
368
+ },
369
+ nextState: "start"
370
+ }, {
371
+ token : "string.quasi.start",
372
+ regex : /`/,
373
+ push : [{
374
+ token : "constant.language.escape",
375
+ regex : escapedRe
376
+ }, {
377
+ token : "paren.quasi.start",
378
+ regex : /\${/,
379
+ push : "start"
380
+ }, {
381
+ token : "string.quasi.end",
382
+ regex : /`/,
383
+ next : "pop"
384
+ }, {
385
+ defaultToken: "string.quasi"
386
+ }]
387
+ });
388
+
389
+ if (!options || options.jsx != false)
390
+ JSX.call(this);
391
+ }
392
+
393
+ this.embedRules(DocCommentHighlightRules, "doc-",
394
+ [ DocCommentHighlightRules.getEndRule("no_regex") ]);
395
+
396
+ this.normalizeRules();
397
+ };
398
+
399
+ oop.inherits(JavaScriptHighlightRules, TextHighlightRules);
400
+
401
+ function JSX() {
402
+ var tagRegex = identifierRe.replace("\\d", "\\d\\-");
403
+ var jsxTag = {
404
+ onMatch : function(val, state, stack) {
405
+ var offset = val.charAt(1) == "/" ? 2 : 1;
406
+ if (offset == 1) {
407
+ if (state != this.nextState)
408
+ stack.unshift(this.next, this.nextState, 0);
409
+ else
410
+ stack.unshift(this.next);
411
+ stack[2]++;
412
+ } else if (offset == 2) {
413
+ if (state == this.nextState) {
414
+ stack[1]--;
415
+ if (!stack[1] || stack[1] < 0) {
416
+ stack.shift();
417
+ stack.shift();
418
+ }
419
+ }
420
+ }
421
+ return [{
422
+ type: "meta.tag.punctuation." + (offset == 1 ? "" : "end-") + "tag-open.xml",
423
+ value: val.slice(0, offset)
424
+ }, {
425
+ type: "meta.tag.tag-name.xml",
426
+ value: val.substr(offset)
427
+ }];
428
+ },
429
+ regex : "</?" + tagRegex + "",
430
+ next: "jsxAttributes",
431
+ nextState: "jsx"
432
+ };
433
+ this.$rules.start.unshift(jsxTag);
434
+ var jsxJsRule = {
435
+ regex: "{",
436
+ token: "paren.quasi.start",
437
+ push: "start"
438
+ };
439
+ this.$rules.jsx = [
440
+ jsxJsRule,
441
+ jsxTag,
442
+ {include : "reference"},
443
+ {defaultToken: "string"}
444
+ ];
445
+ this.$rules.jsxAttributes = [{
446
+ token : "meta.tag.punctuation.tag-close.xml",
447
+ regex : "/?>",
448
+ onMatch : function(value, currentState, stack) {
449
+ if (currentState == stack[0])
450
+ stack.shift();
451
+ if (value.length == 2) {
452
+ if (stack[0] == this.nextState)
453
+ stack[1]--;
454
+ if (!stack[1] || stack[1] < 0) {
455
+ stack.splice(0, 2);
456
+ }
457
+ }
458
+ this.next = stack[0] || "start";
459
+ return [{type: this.token, value: value}];
460
+ },
461
+ nextState: "jsx"
462
+ },
463
+ jsxJsRule,
464
+ comments("jsxAttributes"),
465
+ {
466
+ token : "entity.other.attribute-name.xml",
467
+ regex : tagRegex
468
+ }, {
469
+ token : "keyword.operator.attribute-equals.xml",
470
+ regex : "="
471
+ }, {
472
+ token : "text.tag-whitespace.xml",
473
+ regex : "\\s+"
474
+ }, {
475
+ token : "string.attribute-value.xml",
476
+ regex : "'",
477
+ stateName : "jsx_attr_q",
478
+ push : [
479
+ {token : "string.attribute-value.xml", regex: "'", next: "pop"},
480
+ {include : "reference"},
481
+ {defaultToken : "string.attribute-value.xml"}
482
+ ]
483
+ }, {
484
+ token : "string.attribute-value.xml",
485
+ regex : '"',
486
+ stateName : "jsx_attr_qq",
487
+ push : [
488
+ {token : "string.attribute-value.xml", regex: '"', next: "pop"},
489
+ {include : "reference"},
490
+ {defaultToken : "string.attribute-value.xml"}
491
+ ]
492
+ },
493
+ jsxTag
494
+ ];
495
+ this.$rules.reference = [{
496
+ token : "constant.language.escape.reference.xml",
497
+ regex : "(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"
498
+ }];
499
+ }
500
+
501
+ function comments(next) {
502
+ return [
503
+ {
504
+ token : "comment", // multi line comment
505
+ regex : /\/\*/,
506
+ next: [
507
+ DocCommentHighlightRules.getTagRule(),
508
+ {token : "comment", regex : "\\*\\/", next : next || "pop"},
509
+ {defaultToken : "comment", caseInsensitive: true}
510
+ ]
511
+ }, {
512
+ token : "comment",
513
+ regex : "\\/\\/",
514
+ next: [
515
+ DocCommentHighlightRules.getTagRule(),
516
+ {token : "comment", regex : "$|^", next : next || "pop"},
517
+ {defaultToken : "comment", caseInsensitive: true}
518
+ ]
519
+ }
520
+ ];
521
+ }
522
+ exports.JavaScriptHighlightRules = JavaScriptHighlightRules;
523
+ });
524
+
525
+ ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"], function(require, exports, module) {
526
+ "use strict";
527
+
528
+ var Range = require("../range").Range;
529
+
530
+ var MatchingBraceOutdent = function() {};
531
+
532
+ (function() {
533
+
534
+ this.checkOutdent = function(line, input) {
535
+ if (! /^\s+$/.test(line))
536
+ return false;
537
+
538
+ return /^\s*\}/.test(input);
539
+ };
540
+
541
+ this.autoOutdent = function(doc, row) {
542
+ var line = doc.getLine(row);
543
+ var match = line.match(/^(\s*\})/);
544
+
545
+ if (!match) return 0;
546
+
547
+ var column = match[1].length;
548
+ var openBracePos = doc.findMatchingBracket({row: row, column: column});
549
+
550
+ if (!openBracePos || openBracePos.row == row) return 0;
551
+
552
+ var indent = this.$getIndent(doc.getLine(openBracePos.row));
553
+ doc.replace(new Range(row, 0, row, column-1), indent);
554
+ };
555
+
556
+ this.$getIndent = function(line) {
557
+ return line.match(/^\s*/)[0];
558
+ };
559
+
560
+ }).call(MatchingBraceOutdent.prototype);
561
+
562
+ exports.MatchingBraceOutdent = MatchingBraceOutdent;
563
+ });
564
+
565
+ ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"], function(require, exports, module) {
566
+ "use strict";
567
+
568
+ var oop = require("../../lib/oop");
569
+ var Range = require("../../range").Range;
570
+ var BaseFoldMode = require("./fold_mode").FoldMode;
571
+
572
+ var FoldMode = exports.FoldMode = function(commentRegex) {
573
+ if (commentRegex) {
574
+ this.foldingStartMarker = new RegExp(
575
+ this.foldingStartMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.start)
576
+ );
577
+ this.foldingStopMarker = new RegExp(
578
+ this.foldingStopMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.end)
579
+ );
580
+ }
581
+ };
582
+ oop.inherits(FoldMode, BaseFoldMode);
583
+
584
+ (function() {
585
+
586
+ this.foldingStartMarker = /([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/;
587
+ this.foldingStopMarker = /^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/;
588
+ this.singleLineBlockCommentRe= /^\s*(\/\*).*\*\/\s*$/;
589
+ this.tripleStarBlockCommentRe = /^\s*(\/\*\*\*).*\*\/\s*$/;
590
+ this.startRegionRe = /^\s*(\/\*|\/\/)#?region\b/;
591
+ this._getFoldWidgetBase = this.getFoldWidget;
592
+ this.getFoldWidget = function(session, foldStyle, row) {
593
+ var line = session.getLine(row);
594
+
595
+ if (this.singleLineBlockCommentRe.test(line)) {
596
+ if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))
597
+ return "";
598
+ }
599
+
600
+ var fw = this._getFoldWidgetBase(session, foldStyle, row);
601
+
602
+ if (!fw && this.startRegionRe.test(line))
603
+ return "start"; // lineCommentRegionStart
604
+
605
+ return fw;
606
+ };
607
+
608
+ this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {
609
+ var line = session.getLine(row);
610
+
611
+ if (this.startRegionRe.test(line))
612
+ return this.getCommentRegionBlock(session, line, row);
613
+
614
+ var match = line.match(this.foldingStartMarker);
615
+ if (match) {
616
+ var i = match.index;
617
+
618
+ if (match[1])
619
+ return this.openingBracketBlock(session, match[1], row, i);
620
+
621
+ var range = session.getCommentFoldRange(row, i + match[0].length, 1);
622
+
623
+ if (range && !range.isMultiLine()) {
624
+ if (forceMultiline) {
625
+ range = this.getSectionRange(session, row);
626
+ } else if (foldStyle != "all")
627
+ range = null;
628
+ }
629
+
630
+ return range;
631
+ }
632
+
633
+ if (foldStyle === "markbegin")
634
+ return;
635
+
636
+ var match = line.match(this.foldingStopMarker);
637
+ if (match) {
638
+ var i = match.index + match[0].length;
639
+
640
+ if (match[1])
641
+ return this.closingBracketBlock(session, match[1], row, i);
642
+
643
+ return session.getCommentFoldRange(row, i, -1);
644
+ }
645
+ };
646
+
647
+ this.getSectionRange = function(session, row) {
648
+ var line = session.getLine(row);
649
+ var startIndent = line.search(/\S/);
650
+ var startRow = row;
651
+ var startColumn = line.length;
652
+ row = row + 1;
653
+ var endRow = row;
654
+ var maxRow = session.getLength();
655
+ while (++row < maxRow) {
656
+ line = session.getLine(row);
657
+ var indent = line.search(/\S/);
658
+ if (indent === -1)
659
+ continue;
660
+ if (startIndent > indent)
661
+ break;
662
+ var subRange = this.getFoldWidgetRange(session, "all", row);
663
+
664
+ if (subRange) {
665
+ if (subRange.start.row <= startRow) {
666
+ break;
667
+ } else if (subRange.isMultiLine()) {
668
+ row = subRange.end.row;
669
+ } else if (startIndent == indent) {
670
+ break;
671
+ }
672
+ }
673
+ endRow = row;
674
+ }
675
+
676
+ return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);
677
+ };
678
+ this.getCommentRegionBlock = function(session, line, row) {
679
+ var startColumn = line.search(/\s*$/);
680
+ var maxRow = session.getLength();
681
+ var startRow = row;
682
+
683
+ var re = /^\s*(?:\/\*|\/\/|--)#?(end)?region\b/;
684
+ var depth = 1;
685
+ while (++row < maxRow) {
686
+ line = session.getLine(row);
687
+ var m = re.exec(line);
688
+ if (!m) continue;
689
+ if (m[1]) depth--;
690
+ else depth++;
691
+
692
+ if (!depth) break;
693
+ }
694
+
695
+ var endRow = row;
696
+ if (endRow > startRow) {
697
+ return new Range(startRow, startColumn, endRow, line.length);
698
+ }
699
+ };
700
+
701
+ }).call(FoldMode.prototype);
702
+
703
+ });
704
+
705
+ ace.define("ace/mode/javascript",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/javascript_highlight_rules","ace/mode/matching_brace_outdent","ace/worker/worker_client","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle"], function(require, exports, module) {
706
+ "use strict";
707
+
708
+ var oop = require("../lib/oop");
709
+ var TextMode = require("./text").Mode;
710
+ var JavaScriptHighlightRules = require("./javascript_highlight_rules").JavaScriptHighlightRules;
711
+ var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
712
+ var WorkerClient = require("../worker/worker_client").WorkerClient;
713
+ var CstyleBehaviour = require("./behaviour/cstyle").CstyleBehaviour;
714
+ var CStyleFoldMode = require("./folding/cstyle").FoldMode;
715
+
716
+ var Mode = function() {
717
+ this.HighlightRules = JavaScriptHighlightRules;
718
+
719
+ this.$outdent = new MatchingBraceOutdent();
720
+ this.$behaviour = new CstyleBehaviour();
721
+ this.foldingRules = new CStyleFoldMode();
722
+ };
723
+ oop.inherits(Mode, TextMode);
724
+
725
+ (function() {
726
+
727
+ this.lineCommentStart = "//";
728
+ this.blockComment = {start: "/*", end: "*/"};
729
+ this.$quotes = {'"': '"', "'": "'", "`": "`"};
730
+
731
+ this.getNextLineIndent = function(state, line, tab) {
732
+ var indent = this.$getIndent(line);
733
+
734
+ var tokenizedLine = this.getTokenizer().getLineTokens(line, state);
735
+ var tokens = tokenizedLine.tokens;
736
+ var endState = tokenizedLine.state;
737
+
738
+ if (tokens.length && tokens[tokens.length-1].type == "comment") {
739
+ return indent;
740
+ }
741
+
742
+ if (state == "start" || state == "no_regex") {
743
+ var match = line.match(/^.*(?:\bcase\b.*:|[\{\(\[])\s*$/);
744
+ if (match) {
745
+ indent += tab;
746
+ }
747
+ } else if (state == "doc-start") {
748
+ if (endState == "start" || endState == "no_regex") {
749
+ return "";
750
+ }
751
+ var match = line.match(/^\s*(\/?)\*/);
752
+ if (match) {
753
+ if (match[1]) {
754
+ indent += " ";
755
+ }
756
+ indent += "* ";
757
+ }
758
+ }
759
+
760
+ return indent;
761
+ };
762
+
763
+ this.checkOutdent = function(state, line, input) {
764
+ return this.$outdent.checkOutdent(line, input);
765
+ };
766
+
767
+ this.autoOutdent = function(state, doc, row) {
768
+ this.$outdent.autoOutdent(doc, row);
769
+ };
770
+
771
+ this.createWorker = function(session) {
772
+ var worker = new WorkerClient(["ace"], "ace/mode/javascript_worker", "JavaScriptWorker");
773
+ worker.attachToDocument(session.getDocument());
774
+
775
+ worker.on("annotate", function(results) {
776
+ session.setAnnotations(results.data);
777
+ });
778
+
779
+ worker.on("terminate", function() {
780
+ session.clearAnnotations();
781
+ });
782
+
783
+ return worker;
784
+ };
785
+
786
+ this.$id = "ace/mode/javascript";
787
+ this.snippetFileId = "ace/snippets/javascript";
788
+ }).call(Mode.prototype);
789
+
790
+ exports.Mode = Mode;
791
+ });
792
+
793
+ ace.define("ace/mode/typescript_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/javascript_highlight_rules"], function (require, exports, module) {
794
+ "use strict";
795
+
796
+ var oop = require("../lib/oop");
797
+ var JavaScriptHighlightRules = require("./javascript_highlight_rules").JavaScriptHighlightRules;
798
+
799
+ var TypeScriptHighlightRules = function (options) {
800
+
801
+ var tsRules = [
802
+ {
803
+ token: ["storage.type", "text", "entity.name.function.ts"],
804
+ regex: "(function)(\\s+)([a-zA-Z0-9\$_\u00a1-\uffff][a-zA-Z0-9\d\$_\u00a1-\uffff]*)"
805
+ },
806
+ {
807
+ token: "keyword",
808
+ regex: "(?:\\b(constructor|declare|interface|as|AS|public|private|extends|export|super|readonly|module|namespace|abstract|implements)\\b)"
809
+ },
810
+ {
811
+ token: ["keyword", "storage.type.variable.ts"],
812
+ regex: "(class|type)(\\s+[a-zA-Z0-9_?.$][\\w?.$]*)"
813
+ },
814
+ {
815
+ token: "keyword",
816
+ regex: "\\b(?:super|export|import|keyof|infer)\\b"
817
+ },
818
+ {
819
+ token: ["storage.type.variable.ts"],
820
+ regex: "(?:\\b(this\\.|string\\b|bool\\b|boolean\\b|number\\b|true\\b|false\\b|undefined\\b|any\\b|null\\b|(?:unique )?symbol\\b|object\\b|never\\b|enum\\b))"
821
+ }
822
+ ];
823
+
824
+ var JSRules = new JavaScriptHighlightRules({jsx: (options && options.jsx) == true}).getRules();
825
+
826
+ JSRules.no_regex = tsRules.concat(JSRules.no_regex);
827
+ this.$rules = JSRules;
828
+ };
829
+
830
+ oop.inherits(TypeScriptHighlightRules, JavaScriptHighlightRules);
831
+
832
+ exports.TypeScriptHighlightRules = TypeScriptHighlightRules;
833
+ });
834
+
835
+ ace.define("ace/mode/typescript",["require","exports","module","ace/lib/oop","ace/mode/javascript","ace/mode/typescript_highlight_rules","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle","ace/mode/matching_brace_outdent"], function(require, exports, module) {
836
+ "use strict";
837
+
838
+ var oop = require("../lib/oop");
839
+ var jsMode = require("./javascript").Mode;
840
+ var TypeScriptHighlightRules = require("./typescript_highlight_rules").TypeScriptHighlightRules;
841
+ var CstyleBehaviour = require("./behaviour/cstyle").CstyleBehaviour;
842
+ var CStyleFoldMode = require("./folding/cstyle").FoldMode;
843
+ var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
844
+
845
+ var Mode = function() {
846
+ this.HighlightRules = TypeScriptHighlightRules;
847
+
848
+ this.$outdent = new MatchingBraceOutdent();
849
+ this.$behaviour = new CstyleBehaviour();
850
+ this.foldingRules = new CStyleFoldMode();
851
+ };
852
+ oop.inherits(Mode, jsMode);
853
+
854
+ (function() {
855
+ this.createWorker = function(session) {
856
+ return null;
857
+ };
858
+ this.$id = "ace/mode/typescript";
859
+ }).call(Mode.prototype);
860
+
861
+ exports.Mode = Mode;
862
+ }); (function() {
863
+ ace.require(["ace/mode/typescript"], function(m) {
864
+ if (typeof module == "object" && typeof exports == "object" && module) {
865
+ module.exports = m;
866
+ }
867
+ });
868
+ })();
869
+