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,317 @@
1
+ ace.define("ace/mode/logiql_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 LogiQLHighlightRules = function() {
8
+
9
+ this.$rules = { start:
10
+ [ { token: 'comment.block',
11
+ regex: '/\\*',
12
+ push:
13
+ [ { token: 'comment.block', regex: '\\*/', next: 'pop' },
14
+ { defaultToken: 'comment.block' } ]
15
+ },
16
+ { token: 'comment.single',
17
+ regex: '//.*'
18
+ },
19
+ { token: 'constant.numeric',
20
+ regex: '\\d+(?:\\.\\d+)?(?:[eE][+-]?\\d+)?[fd]?'
21
+ },
22
+ { token: 'string',
23
+ regex: '"',
24
+ push:
25
+ [ { token: 'string', regex: '"', next: 'pop' },
26
+ { defaultToken: 'string' } ]
27
+ },
28
+ { token: 'constant.language',
29
+ regex: '\\b(true|false)\\b'
30
+ },
31
+ { token: 'entity.name.type.logicblox',
32
+ regex: '`[a-zA-Z_:]+(\\d|\\a)*\\b'
33
+ },
34
+ { token: 'keyword.start', regex: '->', comment: 'Constraint' },
35
+ { token: 'keyword.start', regex: '-->', comment: 'Level 1 Constraint'},
36
+ { token: 'keyword.start', regex: '<-', comment: 'Rule' },
37
+ { token: 'keyword.start', regex: '<--', comment: 'Level 1 Rule' },
38
+ { token: 'keyword.end', regex: '\\.', comment: 'Terminator' },
39
+ { token: 'keyword.other', regex: '!', comment: 'Negation' },
40
+ { token: 'keyword.other', regex: ',', comment: 'Conjunction' },
41
+ { token: 'keyword.other', regex: ';', comment: 'Disjunction' },
42
+ { token: 'keyword.operator', regex: '<=|>=|!=|<|>', comment: 'Equality'},
43
+ { token: 'keyword.other', regex: '@', comment: 'Equality' },
44
+ { token: 'keyword.operator', regex: '\\+|-|\\*|/', comment: 'Arithmetic operations'},
45
+ { token: 'keyword', regex: '::', comment: 'Colon colon' },
46
+ { token: 'support.function',
47
+ regex: '\\b(agg\\s*<<)',
48
+ push:
49
+ [ { include: '$self' },
50
+ { token: 'support.function',
51
+ regex: '>>',
52
+ next: 'pop' } ]
53
+ },
54
+ { token: 'storage.modifier',
55
+ regex: '\\b(lang:[\\w:]*)'
56
+ },
57
+ { token: [ 'storage.type', 'text' ],
58
+ regex: '(export|sealed|clauses|block|alias|alias_all)(\\s*\\()(?=`)'
59
+ },
60
+ { token: 'entity.name',
61
+ regex: '[a-zA-Z_][a-zA-Z_0-9:]*(@prev|@init|@final)?(?=(\\(|\\[))'
62
+ },
63
+ { token: 'variable.parameter',
64
+ regex: '([a-zA-Z][a-zA-Z_0-9]*|_)\\s*(?=(,|\\.|<-|->|\\)|\\]|=))'
65
+ } ] };
66
+
67
+ this.normalizeRules();
68
+ };
69
+
70
+ oop.inherits(LogiQLHighlightRules, TextHighlightRules);
71
+
72
+ exports.LogiQLHighlightRules = LogiQLHighlightRules;
73
+ });
74
+
75
+ ace.define("ace/mode/folding/coffee",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode","ace/range"], function(require, exports, module) {
76
+ "use strict";
77
+
78
+ var oop = require("../../lib/oop");
79
+ var BaseFoldMode = require("./fold_mode").FoldMode;
80
+ var Range = require("../../range").Range;
81
+
82
+ var FoldMode = exports.FoldMode = function() {};
83
+ oop.inherits(FoldMode, BaseFoldMode);
84
+
85
+ (function() {
86
+
87
+ this.getFoldWidgetRange = function(session, foldStyle, row) {
88
+ var range = this.indentationBlock(session, row);
89
+ if (range)
90
+ return range;
91
+
92
+ var re = /\S/;
93
+ var line = session.getLine(row);
94
+ var startLevel = line.search(re);
95
+ if (startLevel == -1 || line[startLevel] != "#")
96
+ return;
97
+
98
+ var startColumn = line.length;
99
+ var maxRow = session.getLength();
100
+ var startRow = row;
101
+ var endRow = row;
102
+
103
+ while (++row < maxRow) {
104
+ line = session.getLine(row);
105
+ var level = line.search(re);
106
+
107
+ if (level == -1)
108
+ continue;
109
+
110
+ if (line[level] != "#")
111
+ break;
112
+
113
+ endRow = row;
114
+ }
115
+
116
+ if (endRow > startRow) {
117
+ var endColumn = session.getLine(endRow).length;
118
+ return new Range(startRow, startColumn, endRow, endColumn);
119
+ }
120
+ };
121
+ this.getFoldWidget = function(session, foldStyle, row) {
122
+ var line = session.getLine(row);
123
+ var indent = line.search(/\S/);
124
+ var next = session.getLine(row + 1);
125
+ var prev = session.getLine(row - 1);
126
+ var prevIndent = prev.search(/\S/);
127
+ var nextIndent = next.search(/\S/);
128
+
129
+ if (indent == -1) {
130
+ session.foldWidgets[row - 1] = prevIndent!= -1 && prevIndent < nextIndent ? "start" : "";
131
+ return "";
132
+ }
133
+ if (prevIndent == -1) {
134
+ if (indent == nextIndent && line[indent] == "#" && next[indent] == "#") {
135
+ session.foldWidgets[row - 1] = "";
136
+ session.foldWidgets[row + 1] = "";
137
+ return "start";
138
+ }
139
+ } else if (prevIndent == indent && line[indent] == "#" && prev[indent] == "#") {
140
+ if (session.getLine(row - 2).search(/\S/) == -1) {
141
+ session.foldWidgets[row - 1] = "start";
142
+ session.foldWidgets[row + 1] = "";
143
+ return "";
144
+ }
145
+ }
146
+
147
+ if (prevIndent!= -1 && prevIndent < indent)
148
+ session.foldWidgets[row - 1] = "start";
149
+ else
150
+ session.foldWidgets[row - 1] = "";
151
+
152
+ if (indent < nextIndent)
153
+ return "start";
154
+ else
155
+ return "";
156
+ };
157
+
158
+ }).call(FoldMode.prototype);
159
+
160
+ });
161
+
162
+ ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"], function(require, exports, module) {
163
+ "use strict";
164
+
165
+ var Range = require("../range").Range;
166
+
167
+ var MatchingBraceOutdent = function() {};
168
+
169
+ (function() {
170
+
171
+ this.checkOutdent = function(line, input) {
172
+ if (! /^\s+$/.test(line))
173
+ return false;
174
+
175
+ return /^\s*\}/.test(input);
176
+ };
177
+
178
+ this.autoOutdent = function(doc, row) {
179
+ var line = doc.getLine(row);
180
+ var match = line.match(/^(\s*\})/);
181
+
182
+ if (!match) return 0;
183
+
184
+ var column = match[1].length;
185
+ var openBracePos = doc.findMatchingBracket({row: row, column: column});
186
+
187
+ if (!openBracePos || openBracePos.row == row) return 0;
188
+
189
+ var indent = this.$getIndent(doc.getLine(openBracePos.row));
190
+ doc.replace(new Range(row, 0, row, column-1), indent);
191
+ };
192
+
193
+ this.$getIndent = function(line) {
194
+ return line.match(/^\s*/)[0];
195
+ };
196
+
197
+ }).call(MatchingBraceOutdent.prototype);
198
+
199
+ exports.MatchingBraceOutdent = MatchingBraceOutdent;
200
+ });
201
+
202
+ ace.define("ace/mode/logiql",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/logiql_highlight_rules","ace/mode/folding/coffee","ace/token_iterator","ace/range","ace/mode/behaviour/cstyle","ace/mode/matching_brace_outdent"], function(require, exports, module) {
203
+ "use strict";
204
+
205
+ var oop = require("../lib/oop");
206
+ var TextMode = require("./text").Mode;
207
+ var LogiQLHighlightRules = require("./logiql_highlight_rules").LogiQLHighlightRules;
208
+ var FoldMode = require("./folding/coffee").FoldMode;
209
+ var TokenIterator = require("../token_iterator").TokenIterator;
210
+ var Range = require("../range").Range;
211
+ var CstyleBehaviour = require("./behaviour/cstyle").CstyleBehaviour;
212
+ var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
213
+
214
+ var Mode = function() {
215
+ this.HighlightRules = LogiQLHighlightRules;
216
+ this.foldingRules = new FoldMode();
217
+ this.$outdent = new MatchingBraceOutdent();
218
+ this.$behaviour = new CstyleBehaviour();
219
+ };
220
+ oop.inherits(Mode, TextMode);
221
+
222
+ (function() {
223
+ this.lineCommentStart = "//";
224
+ this.blockComment = {start: "/*", end: "*/"};
225
+
226
+ this.getNextLineIndent = function(state, line, tab) {
227
+ var indent = this.$getIndent(line);
228
+
229
+ var tokenizedLine = this.getTokenizer().getLineTokens(line, state);
230
+ var tokens = tokenizedLine.tokens;
231
+ var endState = tokenizedLine.state;
232
+ if (/comment|string/.test(endState))
233
+ return indent;
234
+ if (tokens.length && tokens[tokens.length - 1].type == "comment.single")
235
+ return indent;
236
+
237
+ var match = line.match();
238
+ if (/(-->|<--|<-|->|{)\s*$/.test(line))
239
+ indent += tab;
240
+ return indent;
241
+ };
242
+
243
+ this.checkOutdent = function(state, line, input) {
244
+ if (this.$outdent.checkOutdent(line, input))
245
+ return true;
246
+
247
+ if (input !== "\n" && input !== "\r\n")
248
+ return false;
249
+
250
+ if (!/^\s+/.test(line))
251
+ return false;
252
+
253
+ return true;
254
+ };
255
+
256
+ this.autoOutdent = function(state, doc, row) {
257
+ if (this.$outdent.autoOutdent(doc, row))
258
+ return;
259
+ var prevLine = doc.getLine(row);
260
+ var match = prevLine.match(/^\s+/);
261
+ var column = prevLine.lastIndexOf(".") + 1;
262
+ if (!match || !row || !column) return 0;
263
+
264
+ var line = doc.getLine(row + 1);
265
+ var startRange = this.getMatching(doc, {row: row, column: column});
266
+ if (!startRange || startRange.start.row == row) return 0;
267
+
268
+ column = match[0].length;
269
+ var indent = this.$getIndent(doc.getLine(startRange.start.row));
270
+ doc.replace(new Range(row + 1, 0, row + 1, column), indent);
271
+ };
272
+
273
+ this.getMatching = function(session, row, column) {
274
+ if (row == undefined)
275
+ row = session.selection.lead;
276
+ if (typeof row == "object") {
277
+ column = row.column;
278
+ row = row.row;
279
+ }
280
+
281
+ var startToken = session.getTokenAt(row, column);
282
+ var KW_START = "keyword.start", KW_END = "keyword.end";
283
+ var tok;
284
+ if (!startToken)
285
+ return;
286
+ if (startToken.type == KW_START) {
287
+ var it = new TokenIterator(session, row, column);
288
+ it.step = it.stepForward;
289
+ } else if (startToken.type == KW_END) {
290
+ var it = new TokenIterator(session, row, column);
291
+ it.step = it.stepBackward;
292
+ } else
293
+ return;
294
+
295
+ while (tok = it.step()) {
296
+ if (tok.type == KW_START || tok.type == KW_END)
297
+ break;
298
+ }
299
+ if (!tok || tok.type == startToken.type)
300
+ return;
301
+
302
+ var col = it.getCurrentTokenColumn();
303
+ var row = it.getCurrentTokenRow();
304
+ return new Range(row, col, row, col + tok.value.length);
305
+ };
306
+ this.$id = "ace/mode/logiql";
307
+ }).call(Mode.prototype);
308
+
309
+ exports.Mode = Mode;
310
+ }); (function() {
311
+ ace.require(["ace/mode/logiql"], function(m) {
312
+ if (typeof module == "object" && typeof exports == "object" && module) {
313
+ module.exports = m;
314
+ }
315
+ });
316
+ })();
317
+
@@ -0,0 +1,352 @@
1
+ ace.define("ace/mode/logtalk_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 LogtalkHighlightRules = function() {
8
+
9
+ this.$rules = { start:
10
+ [ { token: 'punctuation.definition.comment.logtalk',
11
+ regex: '/\\*',
12
+ push:
13
+ [ { token: 'punctuation.definition.comment.logtalk',
14
+ regex: '\\*/',
15
+ next: 'pop' },
16
+ { defaultToken: 'comment.block.logtalk' } ] },
17
+ { todo: 'fix grouping',
18
+ token:
19
+ [ 'comment.line.percentage.logtalk',
20
+ 'punctuation.definition.comment.logtalk' ],
21
+ regex: '%.*$\\n?' },
22
+ { todo: 'fix grouping',
23
+ token:
24
+ [ 'storage.type.opening.logtalk',
25
+ 'punctuation.definition.storage.type.logtalk' ],
26
+ regex: ':-\\s(?:object|protocol|category|module)(?=[(])' },
27
+ { todo: 'fix grouping',
28
+ token:
29
+ [ 'storage.type.closing.logtalk',
30
+ 'punctuation.definition.storage.type.logtalk' ],
31
+ regex: ':-\\send_(?:object|protocol|category)(?=[.])' },
32
+ { caseInsensitive: false,
33
+ token: 'storage.type.relations.logtalk',
34
+ regex: '\\b(?:complements|extends|i(?:nstantiates|mp(?:orts|lements))|specializes)(?=[(])' },
35
+ { caseInsensitive: false,
36
+ todo: 'fix grouping',
37
+ token:
38
+ [ 'storage.modifier.others.logtalk',
39
+ 'punctuation.definition.storage.modifier.logtalk' ],
40
+ regex: ':-\\s(?:e(?:lse|ndif)|built_in|dynamic|synchronized|threaded)(?=[.])' },
41
+ { caseInsensitive: false,
42
+ todo: 'fix grouping',
43
+ token:
44
+ [ 'storage.modifier.others.logtalk',
45
+ 'punctuation.definition.storage.modifier.logtalk' ],
46
+ regex: ':-\\s(?:c(?:alls|oinductive)|e(?:lif|n(?:coding|sure_loaded)|xport)|i(?:f|n(?:clude|itialization|fo))|reexport|set_(?:logtalk|prolog)_flag|uses)(?=[(])' },
47
+ { caseInsensitive: false,
48
+ todo: 'fix grouping',
49
+ token:
50
+ [ 'storage.modifier.others.logtalk',
51
+ 'punctuation.definition.storage.modifier.logtalk' ],
52
+ regex: ':-\\s(?:alias|info|d(?:ynamic|iscontiguous)|m(?:eta_(?:non_terminal|predicate)|ode|ultifile)|p(?:ublic|r(?:otected|ivate))|op|use(?:s|_module)|synchronized)(?=[(])' },
53
+ { token: 'keyword.operator.message-sending.logtalk',
54
+ regex: '(:|::|\\^\\^)' },
55
+ { token: 'keyword.operator.external-call.logtalk',
56
+ regex: '([{}])' },
57
+ { token: 'keyword.operator.mode.logtalk', regex: '(\\?|@)' },
58
+ { token: 'keyword.operator.comparison.term.logtalk',
59
+ regex: '(@=<|@<|@>|@>=|==|\\\\==)' },
60
+ { token: 'keyword.operator.comparison.arithmetic.logtalk',
61
+ regex: '(=<|<|>|>=|=:=|=\\\\=)' },
62
+ { token: 'keyword.operator.bitwise.logtalk',
63
+ regex: '(<<|>>|/\\\\|\\\\/|\\\\)' },
64
+ { token: 'keyword.operator.evaluable.logtalk',
65
+ regex: '\\b(?:e|pi|div|mod|rem)\\b(?![-!(^~])' },
66
+ { token: 'keyword.operator.evaluable.logtalk',
67
+ regex: '(\\*\\*|\\+|-|\\*|/|//)' },
68
+ { token: 'keyword.operator.misc.logtalk',
69
+ regex: '(:-|!|\\\\+|,|;|-->|->|=|\\=|\\.|=\\.\\.|\\^|\\bas\\b|\\bis\\b)' },
70
+ { caseInsensitive: false,
71
+ token: 'support.function.evaluable.logtalk',
72
+ regex: '\\b(a(bs|cos|sin|tan|tan2)|c(eiling|os)|div|exp|flo(at(_(integer|fractional)_part)?|or)|log|m(ax|in|od)|r(em|ound)|s(i(n|gn)|qrt)|t(an|runcate)|xor)(?=[(])' },
73
+ { token: 'support.function.control.logtalk',
74
+ regex: '\\b(?:true|fa(?:il|lse)|repeat|(?:instantiation|system)_error)\\b(?![-!(^~])' },
75
+ { token: 'support.function.control.logtalk',
76
+ regex: '\\b((?:type|domain|existence|permission|representation|evaluation|resource|syntax)_error)(?=[(])' },
77
+ { token: 'support.function.control.logtalk',
78
+ regex: '\\b(?:ca(?:ll|tch)|ignore|throw|once)(?=[(])' },
79
+ { token: 'support.function.chars-and-bytes-io.logtalk',
80
+ regex: '\\b(?:(?:get|p(?:eek|ut))_(c(?:har|ode)|byte)|nl)(?=[(])' },
81
+ { token: 'support.function.chars-and-bytes-io.logtalk',
82
+ regex: '\\bnl\\b' },
83
+ { token: 'support.function.atom-term-processing.logtalk',
84
+ regex: '\\b(?:atom_(?:length|c(?:hars|o(?:ncat|des)))|sub_atom|char_code|number_c(?:har|ode)s)(?=[(])' },
85
+ { caseInsensitive: false,
86
+ token: 'support.function.term-testing.logtalk',
87
+ regex: '\\b(?:var|atom(ic)?|integer|float|c(?:allable|ompound)|n(?:onvar|umber)|ground|acyclic_term)(?=[(])' },
88
+ { token: 'support.function.term-comparison.logtalk',
89
+ regex: '\\b(compare)(?=[(])' },
90
+ { token: 'support.function.term-io.logtalk',
91
+ regex: '\\b(?:read(_term)?|write(?:q|_(?:canonical|term))?|(current_)?(?:char_conversion|op))(?=[(])' },
92
+ { caseInsensitive: false,
93
+ token: 'support.function.term-creation-and-decomposition.logtalk',
94
+ regex: '\\b(arg|copy_term|functor|numbervars|term_variables)(?=[(])' },
95
+ { caseInsensitive: false,
96
+ token: 'support.function.term-unification.logtalk',
97
+ regex: '\\b(subsumes_term|unify_with_occurs_check)(?=[(])' },
98
+ { caseInsensitive: false,
99
+ token: 'support.function.stream-selection-and-control.logtalk',
100
+ regex: '\\b(?:(?:se|curren)t_(?:in|out)put|open|close|flush_output|stream_property|at_end_of_stream|set_stream_position)(?=[(])' },
101
+ { token: 'support.function.stream-selection-and-control.logtalk',
102
+ regex: '\\b(?:flush_output|at_end_of_stream)\\b' },
103
+ { token: 'support.function.prolog-flags.logtalk',
104
+ regex: '\\b((?:se|curren)t_prolog_flag)(?=[(])' },
105
+ { token: 'support.function.compiling-and-loading.logtalk',
106
+ regex: '\\b(logtalk_(?:compile|l(?:ibrary_path|oad|oad_context)|make(_target_action)?))(?=[(])' },
107
+ { token: 'support.function.compiling-and-loading.logtalk',
108
+ regex: '\\b(logtalk_make)\\b' },
109
+ { caseInsensitive: false,
110
+ token: 'support.function.event-handling.logtalk',
111
+ regex: '\\b(?:(?:abolish|define)_events|current_event)(?=[(])' },
112
+ { token: 'support.function.implementation-defined-hooks.logtalk',
113
+ regex: '\\b(?:(?:create|current|set)_logtalk_flag|halt)(?=[(])' },
114
+ { token: 'support.function.implementation-defined-hooks.logtalk',
115
+ regex: '\\b(halt)\\b' },
116
+ { token: 'support.function.sorting.logtalk',
117
+ regex: '\\b((key)?(sort))(?=[(])' },
118
+ { caseInsensitive: false,
119
+ token: 'support.function.entity-creation-and-abolishing.logtalk',
120
+ regex: '\\b((c(?:reate|urrent)|abolish)_(?:object|protocol|category))(?=[(])' },
121
+ { caseInsensitive: false,
122
+ token: 'support.function.reflection.logtalk',
123
+ regex: '\\b((object|protocol|category)_property|co(mplements_object|nforms_to_protocol)|extends_(object|protocol|category)|imp(orts_category|lements_protocol)|(instantiat|specializ)es_class)(?=[(])' },
124
+ { token: 'support.function.logtalk',
125
+ regex: '\\b((?:for|retract)all)(?=[(])' },
126
+ { caseInsensitive: false,
127
+ token: 'support.function.execution-context.logtalk',
128
+ regex: '\\b(?:context|parameter|se(?:lf|nder)|this)(?=[(])' },
129
+ { token: 'support.function.database.logtalk',
130
+ regex: '\\b(?:a(?:bolish|ssert(?:a|z))|clause|retract(all)?)(?=[(])' },
131
+ { token: 'support.function.all-solutions.logtalk',
132
+ regex: '\\b((?:bag|set)of|f(?:ind|or)all)(?=[(])' },
133
+ { caseInsensitive: false,
134
+ token: 'support.function.multi-threading.logtalk',
135
+ regex: '\\b(threaded(_(call|once|ignore|exit|peek|wait|notify))?)(?=[(])' },
136
+ { caseInsensitive: false,
137
+ token: 'support.function.engines.logtalk',
138
+ regex: '\\b(threaded_engine(_(create|destroy|self|next(?:_reified)?|yield|post|fetch))?)(?=[(])' },
139
+ { caseInsensitive: false,
140
+ token: 'support.function.reflection.logtalk',
141
+ regex: '\\b(?:current_predicate|predicate_property)(?=[(])' },
142
+ { token: 'support.function.event-handler.logtalk',
143
+ regex: '\\b(?:before|after)(?=[(])' },
144
+ { token: 'support.function.message-forwarding-handler.logtalk',
145
+ regex: '\\b(forward)(?=[(])' },
146
+ { token: 'support.function.grammar-rule.logtalk',
147
+ regex: '\\b(?:expand_(?:goal|term)|(?:goal|term)_expansion|phrase)(?=[(])' },
148
+ { token: 'punctuation.definition.string.begin.logtalk',
149
+ regex: '\'',
150
+ push:
151
+ [ { token: 'constant.character.escape.logtalk',
152
+ regex: '\\\\([\\\\abfnrtv"\']|(x[a-fA-F0-9]+|[0-7]+)\\\\)' },
153
+ { token: 'punctuation.definition.string.end.logtalk',
154
+ regex: '\'',
155
+ next: 'pop' },
156
+ { defaultToken: 'string.quoted.single.logtalk' } ] },
157
+ { token: 'punctuation.definition.string.begin.logtalk',
158
+ regex: '"',
159
+ push:
160
+ [ { token: 'constant.character.escape.logtalk', regex: '\\\\.' },
161
+ { token: 'punctuation.definition.string.end.logtalk',
162
+ regex: '"',
163
+ next: 'pop' },
164
+ { defaultToken: 'string.quoted.double.logtalk' } ] },
165
+ { token: 'constant.numeric.logtalk',
166
+ regex: '\\b(0b[0-1]+|0o[0-7]+|0x[0-9a-fA-F]+)\\b' },
167
+ { token: 'constant.numeric.logtalk',
168
+ regex: '\\b(0\'\\\\.|0\'.|0\'\'|0\'")' },
169
+ { token: 'constant.numeric.logtalk',
170
+ regex: '\\b(\\d+\\.?\\d*((e|E)(\\+|-)?\\d+)?)\\b' },
171
+ { token: 'variable.other.logtalk',
172
+ regex: '\\b([A-Z_][A-Za-z0-9_]*)\\b' } ] };
173
+
174
+ this.normalizeRules();
175
+ };
176
+
177
+ oop.inherits(LogtalkHighlightRules, TextHighlightRules);
178
+
179
+ exports.LogtalkHighlightRules = LogtalkHighlightRules;
180
+ });
181
+
182
+ ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"], function(require, exports, module) {
183
+ "use strict";
184
+
185
+ var oop = require("../../lib/oop");
186
+ var Range = require("../../range").Range;
187
+ var BaseFoldMode = require("./fold_mode").FoldMode;
188
+
189
+ var FoldMode = exports.FoldMode = function(commentRegex) {
190
+ if (commentRegex) {
191
+ this.foldingStartMarker = new RegExp(
192
+ this.foldingStartMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.start)
193
+ );
194
+ this.foldingStopMarker = new RegExp(
195
+ this.foldingStopMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.end)
196
+ );
197
+ }
198
+ };
199
+ oop.inherits(FoldMode, BaseFoldMode);
200
+
201
+ (function() {
202
+
203
+ this.foldingStartMarker = /([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/;
204
+ this.foldingStopMarker = /^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/;
205
+ this.singleLineBlockCommentRe= /^\s*(\/\*).*\*\/\s*$/;
206
+ this.tripleStarBlockCommentRe = /^\s*(\/\*\*\*).*\*\/\s*$/;
207
+ this.startRegionRe = /^\s*(\/\*|\/\/)#?region\b/;
208
+ this._getFoldWidgetBase = this.getFoldWidget;
209
+ this.getFoldWidget = function(session, foldStyle, row) {
210
+ var line = session.getLine(row);
211
+
212
+ if (this.singleLineBlockCommentRe.test(line)) {
213
+ if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))
214
+ return "";
215
+ }
216
+
217
+ var fw = this._getFoldWidgetBase(session, foldStyle, row);
218
+
219
+ if (!fw && this.startRegionRe.test(line))
220
+ return "start"; // lineCommentRegionStart
221
+
222
+ return fw;
223
+ };
224
+
225
+ this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {
226
+ var line = session.getLine(row);
227
+
228
+ if (this.startRegionRe.test(line))
229
+ return this.getCommentRegionBlock(session, line, row);
230
+
231
+ var match = line.match(this.foldingStartMarker);
232
+ if (match) {
233
+ var i = match.index;
234
+
235
+ if (match[1])
236
+ return this.openingBracketBlock(session, match[1], row, i);
237
+
238
+ var range = session.getCommentFoldRange(row, i + match[0].length, 1);
239
+
240
+ if (range && !range.isMultiLine()) {
241
+ if (forceMultiline) {
242
+ range = this.getSectionRange(session, row);
243
+ } else if (foldStyle != "all")
244
+ range = null;
245
+ }
246
+
247
+ return range;
248
+ }
249
+
250
+ if (foldStyle === "markbegin")
251
+ return;
252
+
253
+ var match = line.match(this.foldingStopMarker);
254
+ if (match) {
255
+ var i = match.index + match[0].length;
256
+
257
+ if (match[1])
258
+ return this.closingBracketBlock(session, match[1], row, i);
259
+
260
+ return session.getCommentFoldRange(row, i, -1);
261
+ }
262
+ };
263
+
264
+ this.getSectionRange = function(session, row) {
265
+ var line = session.getLine(row);
266
+ var startIndent = line.search(/\S/);
267
+ var startRow = row;
268
+ var startColumn = line.length;
269
+ row = row + 1;
270
+ var endRow = row;
271
+ var maxRow = session.getLength();
272
+ while (++row < maxRow) {
273
+ line = session.getLine(row);
274
+ var indent = line.search(/\S/);
275
+ if (indent === -1)
276
+ continue;
277
+ if (startIndent > indent)
278
+ break;
279
+ var subRange = this.getFoldWidgetRange(session, "all", row);
280
+
281
+ if (subRange) {
282
+ if (subRange.start.row <= startRow) {
283
+ break;
284
+ } else if (subRange.isMultiLine()) {
285
+ row = subRange.end.row;
286
+ } else if (startIndent == indent) {
287
+ break;
288
+ }
289
+ }
290
+ endRow = row;
291
+ }
292
+
293
+ return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);
294
+ };
295
+ this.getCommentRegionBlock = function(session, line, row) {
296
+ var startColumn = line.search(/\s*$/);
297
+ var maxRow = session.getLength();
298
+ var startRow = row;
299
+
300
+ var re = /^\s*(?:\/\*|\/\/|--)#?(end)?region\b/;
301
+ var depth = 1;
302
+ while (++row < maxRow) {
303
+ line = session.getLine(row);
304
+ var m = re.exec(line);
305
+ if (!m) continue;
306
+ if (m[1]) depth--;
307
+ else depth++;
308
+
309
+ if (!depth) break;
310
+ }
311
+
312
+ var endRow = row;
313
+ if (endRow > startRow) {
314
+ return new Range(startRow, startColumn, endRow, line.length);
315
+ }
316
+ };
317
+
318
+ }).call(FoldMode.prototype);
319
+
320
+ });
321
+
322
+ ace.define("ace/mode/logtalk",["require","exports","module","ace/lib/oop","ace/mode/text","ace/tokenizer","ace/mode/logtalk_highlight_rules","ace/mode/folding/cstyle"], function(require, exports, module) {
323
+ "use strict";
324
+
325
+ var oop = require("../lib/oop");
326
+ var TextMode = require("./text").Mode;
327
+ var Tokenizer = require("../tokenizer").Tokenizer;
328
+ var LogtalkHighlightRules = require("./logtalk_highlight_rules").LogtalkHighlightRules;
329
+ var FoldMode = require("./folding/cstyle").FoldMode;
330
+
331
+ var Mode = function() {
332
+ this.HighlightRules = LogtalkHighlightRules;
333
+ this.foldingRules = new FoldMode();
334
+ this.$behaviour = this.$defaultBehaviour;
335
+ };
336
+ oop.inherits(Mode, TextMode);
337
+
338
+ (function() {
339
+ this.lineCommentStart = "%";
340
+ this.blockComment = {start: "/*", end: "*/"};
341
+ this.$id = "ace/mode/logtalk";
342
+ }).call(Mode.prototype);
343
+
344
+ exports.Mode = Mode;
345
+ }); (function() {
346
+ ace.require(["ace/mode/logtalk"], function(m) {
347
+ if (typeof module == "object" && typeof exports == "object" && module) {
348
+ module.exports = m;
349
+ }
350
+ });
351
+ })();
352
+