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,3550 @@
1
+ ace.define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules"], function(require, exports, module) {
2
+ "use strict";
3
+
4
+ var oop = require("../lib/oop");
5
+ var lang = require("../lib/lang");
6
+ var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
7
+ var supportType = exports.supportType = "align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index";
8
+ var supportFunction = exports.supportFunction = "rgb|rgba|url|attr|counter|counters";
9
+ var supportConstant = exports.supportConstant = "absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom";
10
+ var supportConstantColor = exports.supportConstantColor = "aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen";
11
+ var supportConstantFonts = exports.supportConstantFonts = "arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace";
12
+
13
+ var numRe = exports.numRe = "\\-?(?:(?:[0-9]+(?:\\.[0-9]+)?)|(?:\\.[0-9]+))";
14
+ var pseudoElements = exports.pseudoElements = "(\\:+)\\b(after|before|first-letter|first-line|moz-selection|selection)\\b";
15
+ var pseudoClasses = exports.pseudoClasses = "(:)\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\b";
16
+
17
+ var CssHighlightRules = function() {
18
+
19
+ var keywordMapper = this.createKeywordMapper({
20
+ "support.function": supportFunction,
21
+ "support.constant": supportConstant,
22
+ "support.type": supportType,
23
+ "support.constant.color": supportConstantColor,
24
+ "support.constant.fonts": supportConstantFonts
25
+ }, "text", true);
26
+
27
+ this.$rules = {
28
+ "start" : [{
29
+ include : ["strings", "url", "comments"]
30
+ }, {
31
+ token: "paren.lparen",
32
+ regex: "\\{",
33
+ next: "ruleset"
34
+ }, {
35
+ token: "paren.rparen",
36
+ regex: "\\}"
37
+ }, {
38
+ token: "string",
39
+ regex: "@(?!viewport)",
40
+ next: "media"
41
+ }, {
42
+ token: "keyword",
43
+ regex: "#[a-z0-9-_]+"
44
+ }, {
45
+ token: "keyword",
46
+ regex: "%"
47
+ }, {
48
+ token: "variable",
49
+ regex: "\\.[a-z0-9-_]+"
50
+ }, {
51
+ token: "string",
52
+ regex: ":[a-z0-9-_]+"
53
+ }, {
54
+ token : "constant.numeric",
55
+ regex : numRe
56
+ }, {
57
+ token: "constant",
58
+ regex: "[a-z0-9-_]+"
59
+ }, {
60
+ caseInsensitive: true
61
+ }],
62
+
63
+ "media": [{
64
+ include : ["strings", "url", "comments"]
65
+ }, {
66
+ token: "paren.lparen",
67
+ regex: "\\{",
68
+ next: "start"
69
+ }, {
70
+ token: "paren.rparen",
71
+ regex: "\\}",
72
+ next: "start"
73
+ }, {
74
+ token: "string",
75
+ regex: ";",
76
+ next: "start"
77
+ }, {
78
+ token: "keyword",
79
+ regex: "(?:media|supports|document|charset|import|namespace|media|supports|document"
80
+ + "|page|font|keyframes|viewport|counter-style|font-feature-values"
81
+ + "|swash|ornaments|annotation|stylistic|styleset|character-variant)"
82
+ }],
83
+
84
+ "comments" : [{
85
+ token: "comment", // multi line comment
86
+ regex: "\\/\\*",
87
+ push: [{
88
+ token : "comment",
89
+ regex : "\\*\\/",
90
+ next : "pop"
91
+ }, {
92
+ defaultToken : "comment"
93
+ }]
94
+ }],
95
+
96
+ "ruleset" : [{
97
+ regex : "-(webkit|ms|moz|o)-",
98
+ token : "text"
99
+ }, {
100
+ token : "punctuation.operator",
101
+ regex : "[:;]"
102
+ }, {
103
+ token : "paren.rparen",
104
+ regex : "\\}",
105
+ next : "start"
106
+ }, {
107
+ include : ["strings", "url", "comments"]
108
+ }, {
109
+ token : ["constant.numeric", "keyword"],
110
+ regex : "(" + numRe + ")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)"
111
+ }, {
112
+ token : "constant.numeric",
113
+ regex : numRe
114
+ }, {
115
+ token : "constant.numeric", // hex6 color
116
+ regex : "#[a-f0-9]{6}"
117
+ }, {
118
+ token : "constant.numeric", // hex3 color
119
+ regex : "#[a-f0-9]{3}"
120
+ }, {
121
+ token : ["punctuation", "entity.other.attribute-name.pseudo-element.css"],
122
+ regex : pseudoElements
123
+ }, {
124
+ token : ["punctuation", "entity.other.attribute-name.pseudo-class.css"],
125
+ regex : pseudoClasses
126
+ }, {
127
+ include: "url"
128
+ }, {
129
+ token : keywordMapper,
130
+ regex : "\\-?[a-zA-Z_][a-zA-Z0-9_\\-]*"
131
+ }, {
132
+ caseInsensitive: true
133
+ }],
134
+
135
+ url: [{
136
+ token : "support.function",
137
+ regex : "(?:url(:?-prefix)?|domain|regexp)\\(",
138
+ push: [{
139
+ token : "support.function",
140
+ regex : "\\)",
141
+ next : "pop"
142
+ }, {
143
+ defaultToken: "string"
144
+ }]
145
+ }],
146
+
147
+ strings: [{
148
+ token : "string.start",
149
+ regex : "'",
150
+ push : [{
151
+ token : "string.end",
152
+ regex : "'|$",
153
+ next: "pop"
154
+ }, {
155
+ include : "escapes"
156
+ }, {
157
+ token : "constant.language.escape",
158
+ regex : /\\$/,
159
+ consumeLineEnd: true
160
+ }, {
161
+ defaultToken: "string"
162
+ }]
163
+ }, {
164
+ token : "string.start",
165
+ regex : '"',
166
+ push : [{
167
+ token : "string.end",
168
+ regex : '"|$',
169
+ next: "pop"
170
+ }, {
171
+ include : "escapes"
172
+ }, {
173
+ token : "constant.language.escape",
174
+ regex : /\\$/,
175
+ consumeLineEnd: true
176
+ }, {
177
+ defaultToken: "string"
178
+ }]
179
+ }],
180
+ escapes: [{
181
+ token : "constant.language.escape",
182
+ regex : /\\([a-fA-F\d]{1,6}|[^a-fA-F\d])/
183
+ }]
184
+
185
+ };
186
+
187
+ this.normalizeRules();
188
+ };
189
+
190
+ oop.inherits(CssHighlightRules, TextHighlightRules);
191
+
192
+ exports.CssHighlightRules = CssHighlightRules;
193
+
194
+ });
195
+
196
+ ace.define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
197
+ "use strict";
198
+
199
+ var oop = require("../lib/oop");
200
+ var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
201
+
202
+ var DocCommentHighlightRules = function() {
203
+ this.$rules = {
204
+ "start" : [ {
205
+ token : "comment.doc.tag",
206
+ regex : "@[\\w\\d_]+" // TODO: fix email addresses
207
+ },
208
+ DocCommentHighlightRules.getTagRule(),
209
+ {
210
+ defaultToken : "comment.doc",
211
+ caseInsensitive: true
212
+ }]
213
+ };
214
+ };
215
+
216
+ oop.inherits(DocCommentHighlightRules, TextHighlightRules);
217
+
218
+ DocCommentHighlightRules.getTagRule = function(start) {
219
+ return {
220
+ token : "comment.doc.tag.storage.type",
221
+ regex : "\\b(?:TODO|FIXME|XXX|HACK)\\b"
222
+ };
223
+ };
224
+
225
+ DocCommentHighlightRules.getStartRule = function(start) {
226
+ return {
227
+ token : "comment.doc", // doc comment
228
+ regex : "\\/\\*(?=\\*)",
229
+ next : start
230
+ };
231
+ };
232
+
233
+ DocCommentHighlightRules.getEndRule = function (start) {
234
+ return {
235
+ token : "comment.doc", // closing comment
236
+ regex : "\\*\\/",
237
+ next : start
238
+ };
239
+ };
240
+
241
+
242
+ exports.DocCommentHighlightRules = DocCommentHighlightRules;
243
+
244
+ });
245
+
246
+ 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) {
247
+ "use strict";
248
+
249
+ var oop = require("../lib/oop");
250
+ var DocCommentHighlightRules = require("./doc_comment_highlight_rules").DocCommentHighlightRules;
251
+ var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
252
+ var identifierRe = "[a-zA-Z\\$_\u00a1-\uffff][a-zA-Z\\d\\$_\u00a1-\uffff]*";
253
+
254
+ var JavaScriptHighlightRules = function(options) {
255
+ var keywordMapper = this.createKeywordMapper({
256
+ "variable.language":
257
+ "Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|" + // Constructors
258
+ "Namespace|QName|XML|XMLList|" + // E4X
259
+ "ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|" +
260
+ "Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|" +
261
+ "Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|" + // Errors
262
+ "SyntaxError|TypeError|URIError|" +
263
+ "decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|" + // Non-constructor functions
264
+ "isNaN|parseFloat|parseInt|" +
265
+ "JSON|Math|" + // Other
266
+ "this|arguments|prototype|window|document" , // Pseudo
267
+ "keyword":
268
+ "const|yield|import|get|set|async|await|" +
269
+ "break|case|catch|continue|default|delete|do|else|finally|for|function|" +
270
+ "if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|" +
271
+ "__parent__|__count__|escape|unescape|with|__proto__|" +
272
+ "class|enum|extends|super|export|implements|private|public|interface|package|protected|static",
273
+ "storage.type":
274
+ "const|let|var|function",
275
+ "constant.language":
276
+ "null|Infinity|NaN|undefined",
277
+ "support.function":
278
+ "alert",
279
+ "constant.language.boolean": "true|false"
280
+ }, "identifier");
281
+ var kwBeforeRe = "case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void";
282
+
283
+ var escapedRe = "\\\\(?:x[0-9a-fA-F]{2}|" + // hex
284
+ "u[0-9a-fA-F]{4}|" + // unicode
285
+ "u{[0-9a-fA-F]{1,6}}|" + // es6 unicode
286
+ "[0-2][0-7]{0,2}|" + // oct
287
+ "3[0-7][0-7]?|" + // oct
288
+ "[4-7][0-7]?|" + //oct
289
+ ".)";
290
+
291
+ this.$rules = {
292
+ "no_regex" : [
293
+ DocCommentHighlightRules.getStartRule("doc-start"),
294
+ comments("no_regex"),
295
+ {
296
+ token : "string",
297
+ regex : "'(?=.)",
298
+ next : "qstring"
299
+ }, {
300
+ token : "string",
301
+ regex : '"(?=.)',
302
+ next : "qqstring"
303
+ }, {
304
+ token : "constant.numeric", // hexadecimal, octal and binary
305
+ regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\b/
306
+ }, {
307
+ token : "constant.numeric", // decimal integers and floats
308
+ regex : /(?:\d\d*(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+\b)?/
309
+ }, {
310
+ token : [
311
+ "storage.type", "punctuation.operator", "support.function",
312
+ "punctuation.operator", "entity.name.function", "text","keyword.operator"
313
+ ],
314
+ regex : "(" + identifierRe + ")(\\.)(prototype)(\\.)(" + identifierRe +")(\\s*)(=)",
315
+ next: "function_arguments"
316
+ }, {
317
+ token : [
318
+ "storage.type", "punctuation.operator", "entity.name.function", "text",
319
+ "keyword.operator", "text", "storage.type", "text", "paren.lparen"
320
+ ],
321
+ regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",
322
+ next: "function_arguments"
323
+ }, {
324
+ token : [
325
+ "entity.name.function", "text", "keyword.operator", "text", "storage.type",
326
+ "text", "paren.lparen"
327
+ ],
328
+ regex : "(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",
329
+ next: "function_arguments"
330
+ }, {
331
+ token : [
332
+ "storage.type", "punctuation.operator", "entity.name.function", "text",
333
+ "keyword.operator", "text",
334
+ "storage.type", "text", "entity.name.function", "text", "paren.lparen"
335
+ ],
336
+ regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s+)(\\w+)(\\s*)(\\()",
337
+ next: "function_arguments"
338
+ }, {
339
+ token : [
340
+ "storage.type", "text", "entity.name.function", "text", "paren.lparen"
341
+ ],
342
+ regex : "(function)(\\s+)(" + identifierRe + ")(\\s*)(\\()",
343
+ next: "function_arguments"
344
+ }, {
345
+ token : [
346
+ "entity.name.function", "text", "punctuation.operator",
347
+ "text", "storage.type", "text", "paren.lparen"
348
+ ],
349
+ regex : "(" + identifierRe + ")(\\s*)(:)(\\s*)(function)(\\s*)(\\()",
350
+ next: "function_arguments"
351
+ }, {
352
+ token : [
353
+ "text", "text", "storage.type", "text", "paren.lparen"
354
+ ],
355
+ regex : "(:)(\\s*)(function)(\\s*)(\\()",
356
+ next: "function_arguments"
357
+ }, {
358
+ token : "keyword",
359
+ regex : "from(?=\\s*('|\"))"
360
+ }, {
361
+ token : "keyword",
362
+ regex : "(?:" + kwBeforeRe + ")\\b",
363
+ next : "start"
364
+ }, {
365
+ token : ["support.constant"],
366
+ regex : /that\b/
367
+ }, {
368
+ token : ["storage.type", "punctuation.operator", "support.function.firebug"],
369
+ regex : /(console)(\.)(warn|info|log|error|time|trace|timeEnd|assert)\b/
370
+ }, {
371
+ token : keywordMapper,
372
+ regex : identifierRe
373
+ }, {
374
+ token : "punctuation.operator",
375
+ regex : /[.](?![.])/,
376
+ next : "property"
377
+ }, {
378
+ token : "storage.type",
379
+ regex : /=>/,
380
+ next : "start"
381
+ }, {
382
+ token : "keyword.operator",
383
+ regex : /--|\+\+|\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\|\||\?:|[!$%&*+\-~\/^]=?/,
384
+ next : "start"
385
+ }, {
386
+ token : "punctuation.operator",
387
+ regex : /[?:,;.]/,
388
+ next : "start"
389
+ }, {
390
+ token : "paren.lparen",
391
+ regex : /[\[({]/,
392
+ next : "start"
393
+ }, {
394
+ token : "paren.rparen",
395
+ regex : /[\])}]/
396
+ }, {
397
+ token: "comment",
398
+ regex: /^#!.*$/
399
+ }
400
+ ],
401
+ property: [{
402
+ token : "text",
403
+ regex : "\\s+"
404
+ }, {
405
+ token : [
406
+ "storage.type", "punctuation.operator", "entity.name.function", "text",
407
+ "keyword.operator", "text",
408
+ "storage.type", "text", "entity.name.function", "text", "paren.lparen"
409
+ ],
410
+ regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(?:(\\s+)(\\w+))?(\\s*)(\\()",
411
+ next: "function_arguments"
412
+ }, {
413
+ token : "punctuation.operator",
414
+ regex : /[.](?![.])/
415
+ }, {
416
+ token : "support.function",
417
+ 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(?=\()/
418
+ }, {
419
+ token : "support.function.dom",
420
+ 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(?=\()/
421
+ }, {
422
+ token : "support.constant",
423
+ 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/
424
+ }, {
425
+ token : "identifier",
426
+ regex : identifierRe
427
+ }, {
428
+ regex: "",
429
+ token: "empty",
430
+ next: "no_regex"
431
+ }
432
+ ],
433
+ "start": [
434
+ DocCommentHighlightRules.getStartRule("doc-start"),
435
+ comments("start"),
436
+ {
437
+ token: "string.regexp",
438
+ regex: "\\/",
439
+ next: "regex"
440
+ }, {
441
+ token : "text",
442
+ regex : "\\s+|^$",
443
+ next : "start"
444
+ }, {
445
+ token: "empty",
446
+ regex: "",
447
+ next: "no_regex"
448
+ }
449
+ ],
450
+ "regex": [
451
+ {
452
+ token: "regexp.keyword.operator",
453
+ regex: "\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"
454
+ }, {
455
+ token: "string.regexp",
456
+ regex: "/[sxngimy]*",
457
+ next: "no_regex"
458
+ }, {
459
+ token : "invalid",
460
+ regex: /\{\d+\b,?\d*\}[+*]|[+*$^?][+*]|[$^][?]|\?{3,}/
461
+ }, {
462
+ token : "constant.language.escape",
463
+ regex: /\(\?[:=!]|\)|\{\d+\b,?\d*\}|[+*]\?|[()$^+*?.]/
464
+ }, {
465
+ token : "constant.language.delimiter",
466
+ regex: /\|/
467
+ }, {
468
+ token: "constant.language.escape",
469
+ regex: /\[\^?/,
470
+ next: "regex_character_class"
471
+ }, {
472
+ token: "empty",
473
+ regex: "$",
474
+ next: "no_regex"
475
+ }, {
476
+ defaultToken: "string.regexp"
477
+ }
478
+ ],
479
+ "regex_character_class": [
480
+ {
481
+ token: "regexp.charclass.keyword.operator",
482
+ regex: "\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"
483
+ }, {
484
+ token: "constant.language.escape",
485
+ regex: "]",
486
+ next: "regex"
487
+ }, {
488
+ token: "constant.language.escape",
489
+ regex: "-"
490
+ }, {
491
+ token: "empty",
492
+ regex: "$",
493
+ next: "no_regex"
494
+ }, {
495
+ defaultToken: "string.regexp.charachterclass"
496
+ }
497
+ ],
498
+ "function_arguments": [
499
+ {
500
+ token: "variable.parameter",
501
+ regex: identifierRe
502
+ }, {
503
+ token: "punctuation.operator",
504
+ regex: "[, ]+"
505
+ }, {
506
+ token: "punctuation.operator",
507
+ regex: "$"
508
+ }, {
509
+ token: "empty",
510
+ regex: "",
511
+ next: "no_regex"
512
+ }
513
+ ],
514
+ "qqstring" : [
515
+ {
516
+ token : "constant.language.escape",
517
+ regex : escapedRe
518
+ }, {
519
+ token : "string",
520
+ regex : "\\\\$",
521
+ consumeLineEnd : true
522
+ }, {
523
+ token : "string",
524
+ regex : '"|$',
525
+ next : "no_regex"
526
+ }, {
527
+ defaultToken: "string"
528
+ }
529
+ ],
530
+ "qstring" : [
531
+ {
532
+ token : "constant.language.escape",
533
+ regex : escapedRe
534
+ }, {
535
+ token : "string",
536
+ regex : "\\\\$",
537
+ consumeLineEnd : true
538
+ }, {
539
+ token : "string",
540
+ regex : "'|$",
541
+ next : "no_regex"
542
+ }, {
543
+ defaultToken: "string"
544
+ }
545
+ ]
546
+ };
547
+
548
+
549
+ if (!options || !options.noES6) {
550
+ this.$rules.no_regex.unshift({
551
+ regex: "[{}]", onMatch: function(val, state, stack) {
552
+ this.next = val == "{" ? this.nextState : "";
553
+ if (val == "{" && stack.length) {
554
+ stack.unshift("start", state);
555
+ }
556
+ else if (val == "}" && stack.length) {
557
+ stack.shift();
558
+ this.next = stack.shift();
559
+ if (this.next.indexOf("string") != -1 || this.next.indexOf("jsx") != -1)
560
+ return "paren.quasi.end";
561
+ }
562
+ return val == "{" ? "paren.lparen" : "paren.rparen";
563
+ },
564
+ nextState: "start"
565
+ }, {
566
+ token : "string.quasi.start",
567
+ regex : /`/,
568
+ push : [{
569
+ token : "constant.language.escape",
570
+ regex : escapedRe
571
+ }, {
572
+ token : "paren.quasi.start",
573
+ regex : /\${/,
574
+ push : "start"
575
+ }, {
576
+ token : "string.quasi.end",
577
+ regex : /`/,
578
+ next : "pop"
579
+ }, {
580
+ defaultToken: "string.quasi"
581
+ }]
582
+ });
583
+
584
+ if (!options || options.jsx != false)
585
+ JSX.call(this);
586
+ }
587
+
588
+ this.embedRules(DocCommentHighlightRules, "doc-",
589
+ [ DocCommentHighlightRules.getEndRule("no_regex") ]);
590
+
591
+ this.normalizeRules();
592
+ };
593
+
594
+ oop.inherits(JavaScriptHighlightRules, TextHighlightRules);
595
+
596
+ function JSX() {
597
+ var tagRegex = identifierRe.replace("\\d", "\\d\\-");
598
+ var jsxTag = {
599
+ onMatch : function(val, state, stack) {
600
+ var offset = val.charAt(1) == "/" ? 2 : 1;
601
+ if (offset == 1) {
602
+ if (state != this.nextState)
603
+ stack.unshift(this.next, this.nextState, 0);
604
+ else
605
+ stack.unshift(this.next);
606
+ stack[2]++;
607
+ } else if (offset == 2) {
608
+ if (state == this.nextState) {
609
+ stack[1]--;
610
+ if (!stack[1] || stack[1] < 0) {
611
+ stack.shift();
612
+ stack.shift();
613
+ }
614
+ }
615
+ }
616
+ return [{
617
+ type: "meta.tag.punctuation." + (offset == 1 ? "" : "end-") + "tag-open.xml",
618
+ value: val.slice(0, offset)
619
+ }, {
620
+ type: "meta.tag.tag-name.xml",
621
+ value: val.substr(offset)
622
+ }];
623
+ },
624
+ regex : "</?" + tagRegex + "",
625
+ next: "jsxAttributes",
626
+ nextState: "jsx"
627
+ };
628
+ this.$rules.start.unshift(jsxTag);
629
+ var jsxJsRule = {
630
+ regex: "{",
631
+ token: "paren.quasi.start",
632
+ push: "start"
633
+ };
634
+ this.$rules.jsx = [
635
+ jsxJsRule,
636
+ jsxTag,
637
+ {include : "reference"},
638
+ {defaultToken: "string"}
639
+ ];
640
+ this.$rules.jsxAttributes = [{
641
+ token : "meta.tag.punctuation.tag-close.xml",
642
+ regex : "/?>",
643
+ onMatch : function(value, currentState, stack) {
644
+ if (currentState == stack[0])
645
+ stack.shift();
646
+ if (value.length == 2) {
647
+ if (stack[0] == this.nextState)
648
+ stack[1]--;
649
+ if (!stack[1] || stack[1] < 0) {
650
+ stack.splice(0, 2);
651
+ }
652
+ }
653
+ this.next = stack[0] || "start";
654
+ return [{type: this.token, value: value}];
655
+ },
656
+ nextState: "jsx"
657
+ },
658
+ jsxJsRule,
659
+ comments("jsxAttributes"),
660
+ {
661
+ token : "entity.other.attribute-name.xml",
662
+ regex : tagRegex
663
+ }, {
664
+ token : "keyword.operator.attribute-equals.xml",
665
+ regex : "="
666
+ }, {
667
+ token : "text.tag-whitespace.xml",
668
+ regex : "\\s+"
669
+ }, {
670
+ token : "string.attribute-value.xml",
671
+ regex : "'",
672
+ stateName : "jsx_attr_q",
673
+ push : [
674
+ {token : "string.attribute-value.xml", regex: "'", next: "pop"},
675
+ {include : "reference"},
676
+ {defaultToken : "string.attribute-value.xml"}
677
+ ]
678
+ }, {
679
+ token : "string.attribute-value.xml",
680
+ regex : '"',
681
+ stateName : "jsx_attr_qq",
682
+ push : [
683
+ {token : "string.attribute-value.xml", regex: '"', next: "pop"},
684
+ {include : "reference"},
685
+ {defaultToken : "string.attribute-value.xml"}
686
+ ]
687
+ },
688
+ jsxTag
689
+ ];
690
+ this.$rules.reference = [{
691
+ token : "constant.language.escape.reference.xml",
692
+ regex : "(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"
693
+ }];
694
+ }
695
+
696
+ function comments(next) {
697
+ return [
698
+ {
699
+ token : "comment", // multi line comment
700
+ regex : /\/\*/,
701
+ next: [
702
+ DocCommentHighlightRules.getTagRule(),
703
+ {token : "comment", regex : "\\*\\/", next : next || "pop"},
704
+ {defaultToken : "comment", caseInsensitive: true}
705
+ ]
706
+ }, {
707
+ token : "comment",
708
+ regex : "\\/\\/",
709
+ next: [
710
+ DocCommentHighlightRules.getTagRule(),
711
+ {token : "comment", regex : "$|^", next : next || "pop"},
712
+ {defaultToken : "comment", caseInsensitive: true}
713
+ ]
714
+ }
715
+ ];
716
+ }
717
+ exports.JavaScriptHighlightRules = JavaScriptHighlightRules;
718
+ });
719
+
720
+ ace.define("ace/mode/xml_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
721
+ "use strict";
722
+
723
+ var oop = require("../lib/oop");
724
+ var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
725
+
726
+ var XmlHighlightRules = function(normalize) {
727
+ var tagRegex = "[_:a-zA-Z\xc0-\uffff][-_:.a-zA-Z0-9\xc0-\uffff]*";
728
+
729
+ this.$rules = {
730
+ start : [
731
+ {token : "string.cdata.xml", regex : "<\\!\\[CDATA\\[", next : "cdata"},
732
+ {
733
+ token : ["punctuation.instruction.xml", "keyword.instruction.xml"],
734
+ regex : "(<\\?)(" + tagRegex + ")", next : "processing_instruction"
735
+ },
736
+ {token : "comment.start.xml", regex : "<\\!--", next : "comment"},
737
+ {
738
+ token : ["xml-pe.doctype.xml", "xml-pe.doctype.xml"],
739
+ regex : "(<\\!)(DOCTYPE)(?=[\\s])", next : "doctype", caseInsensitive: true
740
+ },
741
+ {include : "tag"},
742
+ {token : "text.end-tag-open.xml", regex: "</"},
743
+ {token : "text.tag-open.xml", regex: "<"},
744
+ {include : "reference"},
745
+ {defaultToken : "text.xml"}
746
+ ],
747
+
748
+ processing_instruction : [{
749
+ token : "entity.other.attribute-name.decl-attribute-name.xml",
750
+ regex : tagRegex
751
+ }, {
752
+ token : "keyword.operator.decl-attribute-equals.xml",
753
+ regex : "="
754
+ }, {
755
+ include: "whitespace"
756
+ }, {
757
+ include: "string"
758
+ }, {
759
+ token : "punctuation.xml-decl.xml",
760
+ regex : "\\?>",
761
+ next : "start"
762
+ }],
763
+
764
+ doctype : [
765
+ {include : "whitespace"},
766
+ {include : "string"},
767
+ {token : "xml-pe.doctype.xml", regex : ">", next : "start"},
768
+ {token : "xml-pe.xml", regex : "[-_a-zA-Z0-9:]+"},
769
+ {token : "punctuation.int-subset", regex : "\\[", push : "int_subset"}
770
+ ],
771
+
772
+ int_subset : [{
773
+ token : "text.xml",
774
+ regex : "\\s+"
775
+ }, {
776
+ token: "punctuation.int-subset.xml",
777
+ regex: "]",
778
+ next: "pop"
779
+ }, {
780
+ token : ["punctuation.markup-decl.xml", "keyword.markup-decl.xml"],
781
+ regex : "(<\\!)(" + tagRegex + ")",
782
+ push : [{
783
+ token : "text",
784
+ regex : "\\s+"
785
+ },
786
+ {
787
+ token : "punctuation.markup-decl.xml",
788
+ regex : ">",
789
+ next : "pop"
790
+ },
791
+ {include : "string"}]
792
+ }],
793
+
794
+ cdata : [
795
+ {token : "string.cdata.xml", regex : "\\]\\]>", next : "start"},
796
+ {token : "text.xml", regex : "\\s+"},
797
+ {token : "text.xml", regex : "(?:[^\\]]|\\](?!\\]>))+"}
798
+ ],
799
+
800
+ comment : [
801
+ {token : "comment.end.xml", regex : "-->", next : "start"},
802
+ {defaultToken : "comment.xml"}
803
+ ],
804
+
805
+ reference : [{
806
+ token : "constant.language.escape.reference.xml",
807
+ regex : "(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"
808
+ }],
809
+
810
+ attr_reference : [{
811
+ token : "constant.language.escape.reference.attribute-value.xml",
812
+ regex : "(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"
813
+ }],
814
+
815
+ tag : [{
816
+ token : ["meta.tag.punctuation.tag-open.xml", "meta.tag.punctuation.end-tag-open.xml", "meta.tag.tag-name.xml"],
817
+ regex : "(?:(<)|(</))((?:" + tagRegex + ":)?" + tagRegex + ")",
818
+ next: [
819
+ {include : "attributes"},
820
+ {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next : "start"}
821
+ ]
822
+ }],
823
+
824
+ tag_whitespace : [
825
+ {token : "text.tag-whitespace.xml", regex : "\\s+"}
826
+ ],
827
+ whitespace : [
828
+ {token : "text.whitespace.xml", regex : "\\s+"}
829
+ ],
830
+ string: [{
831
+ token : "string.xml",
832
+ regex : "'",
833
+ push : [
834
+ {token : "string.xml", regex: "'", next: "pop"},
835
+ {defaultToken : "string.xml"}
836
+ ]
837
+ }, {
838
+ token : "string.xml",
839
+ regex : '"',
840
+ push : [
841
+ {token : "string.xml", regex: '"', next: "pop"},
842
+ {defaultToken : "string.xml"}
843
+ ]
844
+ }],
845
+
846
+ attributes: [{
847
+ token : "entity.other.attribute-name.xml",
848
+ regex : tagRegex
849
+ }, {
850
+ token : "keyword.operator.attribute-equals.xml",
851
+ regex : "="
852
+ }, {
853
+ include: "tag_whitespace"
854
+ }, {
855
+ include: "attribute_value"
856
+ }],
857
+
858
+ attribute_value: [{
859
+ token : "string.attribute-value.xml",
860
+ regex : "'",
861
+ push : [
862
+ {token : "string.attribute-value.xml", regex: "'", next: "pop"},
863
+ {include : "attr_reference"},
864
+ {defaultToken : "string.attribute-value.xml"}
865
+ ]
866
+ }, {
867
+ token : "string.attribute-value.xml",
868
+ regex : '"',
869
+ push : [
870
+ {token : "string.attribute-value.xml", regex: '"', next: "pop"},
871
+ {include : "attr_reference"},
872
+ {defaultToken : "string.attribute-value.xml"}
873
+ ]
874
+ }]
875
+ };
876
+
877
+ if (this.constructor === XmlHighlightRules)
878
+ this.normalizeRules();
879
+ };
880
+
881
+
882
+ (function() {
883
+
884
+ this.embedTagRules = function(HighlightRules, prefix, tag){
885
+ this.$rules.tag.unshift({
886
+ token : ["meta.tag.punctuation.tag-open.xml", "meta.tag." + tag + ".tag-name.xml"],
887
+ regex : "(<)(" + tag + "(?=\\s|>|$))",
888
+ next: [
889
+ {include : "attributes"},
890
+ {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next : prefix + "start"}
891
+ ]
892
+ });
893
+
894
+ this.$rules[tag + "-end"] = [
895
+ {include : "attributes"},
896
+ {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next: "start",
897
+ onMatch : function(value, currentState, stack) {
898
+ stack.splice(0);
899
+ return this.token;
900
+ }}
901
+ ];
902
+
903
+ this.embedRules(HighlightRules, prefix, [{
904
+ token: ["meta.tag.punctuation.end-tag-open.xml", "meta.tag." + tag + ".tag-name.xml"],
905
+ regex : "(</)(" + tag + "(?=\\s|>|$))",
906
+ next: tag + "-end"
907
+ }, {
908
+ token: "string.cdata.xml",
909
+ regex : "<\\!\\[CDATA\\["
910
+ }, {
911
+ token: "string.cdata.xml",
912
+ regex : "\\]\\]>"
913
+ }]);
914
+ };
915
+
916
+ }).call(TextHighlightRules.prototype);
917
+
918
+ oop.inherits(XmlHighlightRules, TextHighlightRules);
919
+
920
+ exports.XmlHighlightRules = XmlHighlightRules;
921
+ });
922
+
923
+ ace.define("ace/mode/html_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/css_highlight_rules","ace/mode/javascript_highlight_rules","ace/mode/xml_highlight_rules"], function(require, exports, module) {
924
+ "use strict";
925
+
926
+ var oop = require("../lib/oop");
927
+ var lang = require("../lib/lang");
928
+ var CssHighlightRules = require("./css_highlight_rules").CssHighlightRules;
929
+ var JavaScriptHighlightRules = require("./javascript_highlight_rules").JavaScriptHighlightRules;
930
+ var XmlHighlightRules = require("./xml_highlight_rules").XmlHighlightRules;
931
+
932
+ var tagMap = lang.createMap({
933
+ a : 'anchor',
934
+ button : 'form',
935
+ form : 'form',
936
+ img : 'image',
937
+ input : 'form',
938
+ label : 'form',
939
+ option : 'form',
940
+ script : 'script',
941
+ select : 'form',
942
+ textarea : 'form',
943
+ style : 'style',
944
+ table : 'table',
945
+ tbody : 'table',
946
+ td : 'table',
947
+ tfoot : 'table',
948
+ th : 'table',
949
+ tr : 'table'
950
+ });
951
+
952
+ var HtmlHighlightRules = function() {
953
+ XmlHighlightRules.call(this);
954
+
955
+ this.addRules({
956
+ attributes: [{
957
+ include : "tag_whitespace"
958
+ }, {
959
+ token : "entity.other.attribute-name.xml",
960
+ regex : "[-_a-zA-Z0-9:.]+"
961
+ }, {
962
+ token : "keyword.operator.attribute-equals.xml",
963
+ regex : "=",
964
+ push : [{
965
+ include: "tag_whitespace"
966
+ }, {
967
+ token : "string.unquoted.attribute-value.html",
968
+ regex : "[^<>='\"`\\s]+",
969
+ next : "pop"
970
+ }, {
971
+ token : "empty",
972
+ regex : "",
973
+ next : "pop"
974
+ }]
975
+ }, {
976
+ include : "attribute_value"
977
+ }],
978
+ tag: [{
979
+ token : function(start, tag) {
980
+ var group = tagMap[tag];
981
+ return ["meta.tag.punctuation." + (start == "<" ? "" : "end-") + "tag-open.xml",
982
+ "meta.tag" + (group ? "." + group : "") + ".tag-name.xml"];
983
+ },
984
+ regex : "(</?)([-_a-zA-Z0-9:.]+)",
985
+ next: "tag_stuff"
986
+ }],
987
+ tag_stuff: [
988
+ {include : "attributes"},
989
+ {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next : "start"}
990
+ ]
991
+ });
992
+
993
+ this.embedTagRules(CssHighlightRules, "css-", "style");
994
+ this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), "js-", "script");
995
+
996
+ if (this.constructor === HtmlHighlightRules)
997
+ this.normalizeRules();
998
+ };
999
+
1000
+ oop.inherits(HtmlHighlightRules, XmlHighlightRules);
1001
+
1002
+ exports.HtmlHighlightRules = HtmlHighlightRules;
1003
+ });
1004
+
1005
+ ace.define("ace/mode/ruby_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
1006
+ "use strict";
1007
+
1008
+ var oop = require("../lib/oop");
1009
+ var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
1010
+ var constantOtherSymbol = exports.constantOtherSymbol = {
1011
+ token : "constant.other.symbol.ruby", // symbol
1012
+ regex : "[:](?:[A-Za-z_]|[@$](?=[a-zA-Z0-9_]))[a-zA-Z0-9_]*[!=?]?"
1013
+ };
1014
+
1015
+ exports.qString = {
1016
+ token : "string", // single line
1017
+ regex : "['](?:(?:\\\\.)|(?:[^'\\\\]))*?[']"
1018
+ };
1019
+
1020
+ exports.qqString = {
1021
+ token : "string", // single line
1022
+ regex : '["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]'
1023
+ };
1024
+
1025
+ exports.tString = {
1026
+ token : "string", // backtick string
1027
+ regex : "[`](?:(?:\\\\.)|(?:[^'\\\\]))*?[`]"
1028
+ };
1029
+
1030
+ var constantNumericHex = exports.constantNumericHex = {
1031
+ token : "constant.numeric", // hex
1032
+ regex : "0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_(?=[0-9a-fA-F]))*\\b"
1033
+ };
1034
+
1035
+ var constantNumericBinary = exports.constantNumericBinary = {
1036
+ token: "constant.numeric",
1037
+ regex: /\b(0[bB][01](?:[01]|_(?=[01]))*)\b/
1038
+ };
1039
+
1040
+ var constantNumericDecimal = exports.constantNumericDecimal = {
1041
+ token: "constant.numeric",
1042
+ regex: /\b(0[dD](?:[1-9](?:[\d]|_(?=[\d]))*|0))\b/
1043
+ };
1044
+
1045
+ var constantNumericOctal = exports.constantNumericDecimal = {
1046
+ token: "constant.numeric",
1047
+ regex: /\b(0[oO]?(?:[1-7](?:[0-7]|_(?=[0-7]))*|0))\b/
1048
+ };
1049
+
1050
+ var constantNumericRational = exports.constantNumericRational = {
1051
+ token: "constant.numeric", //rational + complex
1052
+ regex: /\b([\d]+(?:[./][\d]+)?ri?)\b/
1053
+ };
1054
+
1055
+ var constantNumericComplex = exports.constantNumericComplex = {
1056
+ token: "constant.numeric", //simple complex numbers
1057
+ regex: /\b([\d]i)\b/
1058
+ };
1059
+
1060
+ var constantNumericFloat = exports.constantNumericFloat = {
1061
+ token : "constant.numeric", // float + complex
1062
+ regex : "[+-]?\\d(?:\\d|_(?=\\d))*(?:(?:\\.\\d(?:\\d|_(?=\\d))*)?(?:[eE][+-]?\\d+)?)?i?\\b"
1063
+ };
1064
+
1065
+ var instanceVariable = exports.instanceVariable = {
1066
+ token : "variable.instance", // instance variable
1067
+ regex : "@{1,2}[a-zA-Z_\\d]+"
1068
+ };
1069
+
1070
+ var RubyHighlightRules = function() {
1071
+
1072
+ var builtinFunctions = (
1073
+ "abort|Array|assert|assert_equal|assert_not_equal|assert_same|assert_not_same|" +
1074
+ "assert_nil|assert_not_nil|assert_match|assert_no_match|assert_in_delta|assert_throws|" +
1075
+ "assert_raise|assert_nothing_raised|assert_instance_of|assert_kind_of|assert_respond_to|" +
1076
+ "assert_operator|assert_send|assert_difference|assert_no_difference|assert_recognizes|" +
1077
+ "assert_generates|assert_response|assert_redirected_to|assert_template|assert_select|" +
1078
+ "assert_select_email|assert_select_rjs|assert_select_encoded|css_select|at_exit|" +
1079
+ "attr|attr_writer|attr_reader|attr_accessor|attr_accessible|autoload|binding|block_given?|callcc|" +
1080
+ "caller|catch|chomp|chomp!|chop|chop!|defined?|delete_via_redirect|eval|exec|exit|" +
1081
+ "exit!|fail|Float|flunk|follow_redirect!|fork|form_for|form_tag|format|gets|global_variables|gsub|" +
1082
+ "gsub!|get_via_redirect|host!|https?|https!|include|Integer|lambda|link_to|" +
1083
+ "link_to_unless_current|link_to_function|link_to_remote|load|local_variables|loop|open|open_session|" +
1084
+ "p|print|printf|proc|putc|puts|post_via_redirect|put_via_redirect|raise|rand|" +
1085
+ "raw|readline|readlines|redirect?|request_via_redirect|require|scan|select|" +
1086
+ "set_trace_func|sleep|split|sprintf|srand|String|stylesheet_link_tag|syscall|system|sub|sub!|test|" +
1087
+ "throw|trace_var|trap|untrace_var|atan2|cos|exp|frexp|ldexp|log|log10|sin|sqrt|tan|" +
1088
+ "render|javascript_include_tag|csrf_meta_tag|label_tag|text_field_tag|submit_tag|check_box_tag|" +
1089
+ "content_tag|radio_button_tag|text_area_tag|password_field_tag|hidden_field_tag|" +
1090
+ "fields_for|select_tag|options_for_select|options_from_collection_for_select|collection_select|" +
1091
+ "time_zone_select|select_date|select_time|select_datetime|date_select|time_select|datetime_select|" +
1092
+ "select_year|select_month|select_day|select_hour|select_minute|select_second|file_field_tag|" +
1093
+ "file_field|respond_to|skip_before_filter|around_filter|after_filter|verify|" +
1094
+ "protect_from_forgery|rescue_from|helper_method|redirect_to|before_filter|" +
1095
+ "send_data|send_file|validates_presence_of|validates_uniqueness_of|validates_length_of|" +
1096
+ "validates_format_of|validates_acceptance_of|validates_associated|validates_exclusion_of|" +
1097
+ "validates_inclusion_of|validates_numericality_of|validates_with|validates_each|" +
1098
+ "authenticate_or_request_with_http_basic|authenticate_or_request_with_http_digest|" +
1099
+ "filter_parameter_logging|match|get|post|resources|redirect|scope|assert_routing|" +
1100
+ "translate|localize|extract_locale_from_tld|caches_page|expire_page|caches_action|expire_action|" +
1101
+ "cache|expire_fragment|expire_cache_for|observe|cache_sweeper|" +
1102
+ "has_many|has_one|belongs_to|has_and_belongs_to_many|p|warn|refine|using|module_function|extend|alias_method|" +
1103
+ "private_class_method|remove_method|undef_method"
1104
+ );
1105
+
1106
+ var keywords = (
1107
+ "alias|and|BEGIN|begin|break|case|class|def|defined|do|else|elsif|END|end|ensure|" +
1108
+ "__FILE__|finally|for|gem|if|in|__LINE__|module|next|not|or|private|protected|public|" +
1109
+ "redo|rescue|retry|return|super|then|undef|unless|until|when|while|yield|__ENCODING__|prepend"
1110
+ );
1111
+
1112
+ var buildinConstants = (
1113
+ "true|TRUE|false|FALSE|nil|NIL|ARGF|ARGV|DATA|ENV|RUBY_PLATFORM|RUBY_RELEASE_DATE|" +
1114
+ "RUBY_VERSION|STDERR|STDIN|STDOUT|TOPLEVEL_BINDING|RUBY_PATCHLEVEL|RUBY_REVISION|RUBY_COPYRIGHT|RUBY_ENGINE|RUBY_ENGINE_VERSION|RUBY_DESCRIPTION"
1115
+ );
1116
+
1117
+ var builtinVariables = (
1118
+ "$DEBUG|$defout|$FILENAME|$LOAD_PATH|$SAFE|$stdin|$stdout|$stderr|$VERBOSE|" +
1119
+ "$!|root_url|flash|session|cookies|params|request|response|logger|self"
1120
+ );
1121
+
1122
+ var keywordMapper = this.$keywords = this.createKeywordMapper({
1123
+ "keyword": keywords,
1124
+ "constant.language": buildinConstants,
1125
+ "variable.language": builtinVariables,
1126
+ "support.function": builtinFunctions,
1127
+ "invalid.deprecated": "debugger" // TODO is this a remnant from js mode?
1128
+ }, "identifier");
1129
+
1130
+ var escapedChars = "\\\\(?:n(?:[1-7][0-7]{0,2}|0)|[nsrtvfbae'\"\\\\]|c(?:\\\\M-)?.|M-(?:\\\\C-|\\\\c)?.|C-(?:\\\\M-)?.|[0-7]{3}|x[\\da-fA-F]{2}|u[\\da-fA-F]{4}|u{[\\da-fA-F]{1,6}(?:\\s[\\da-fA-F]{1,6})*})";
1131
+
1132
+ var closeParen = {
1133
+ "(": ")",
1134
+ "[": "]",
1135
+ "{": "}",
1136
+ "<": ">",
1137
+ "^": "^",
1138
+ "|": "|",
1139
+ "%": "%"
1140
+ };
1141
+
1142
+ this.$rules = {
1143
+ "start": [
1144
+ {
1145
+ token: "comment",
1146
+ regex: "#.*$"
1147
+ }, {
1148
+ token: "comment.multiline", // multi line comment
1149
+ regex: "^=begin(?=$|\\s.*$)",
1150
+ next: "comment"
1151
+ }, {
1152
+ token: "string.regexp",
1153
+ regex: /[/](?=.*\/)/,
1154
+ next: "regex"
1155
+ },
1156
+
1157
+ [{
1158
+ token: ["constant.other.symbol.ruby", "string.start"],
1159
+ regex: /(:)?(")/,
1160
+ push: [{
1161
+ token: "constant.language.escape",
1162
+ regex: escapedChars
1163
+ }, {
1164
+ token: "paren.start",
1165
+ regex: /#{/,
1166
+ push: "start"
1167
+ }, {
1168
+ token: "string.end",
1169
+ regex: /"/,
1170
+ next: "pop"
1171
+ }, {
1172
+ defaultToken: "string"
1173
+ }]
1174
+ }, {
1175
+ token: "string.start",
1176
+ regex: /`/,
1177
+ push: [{
1178
+ token: "constant.language.escape",
1179
+ regex: escapedChars
1180
+ }, {
1181
+ token: "paren.start",
1182
+ regex: /#{/,
1183
+ push: "start"
1184
+ }, {
1185
+ token: "string.end",
1186
+ regex: /`/,
1187
+ next: "pop"
1188
+ }, {
1189
+ defaultToken: "string"
1190
+ }]
1191
+ }, {
1192
+ token: ["constant.other.symbol.ruby", "string.start"],
1193
+ regex: /(:)?(')/,
1194
+ push: [{
1195
+ token: "constant.language.escape",
1196
+ regex: /\\['\\]/
1197
+ }, {
1198
+ token: "string.end",
1199
+ regex: /'/,
1200
+ next: "pop"
1201
+ }, {
1202
+ defaultToken: "string"
1203
+ }]
1204
+ }, {
1205
+ token: "string.start",//doesn't see any differences between strings and array of strings in highlighting
1206
+ regex: /%[qwx]([(\[<{^|%])/, onMatch: function (val, state, stack) {
1207
+ if (stack.length)
1208
+ stack = [];
1209
+ var paren = val[val.length - 1];
1210
+ stack.unshift(paren, state);
1211
+ this.next = "qStateWithoutInterpolation";
1212
+ return this.token;
1213
+ }
1214
+ }, {
1215
+ token: "string.start", //doesn't see any differences between strings and array of strings in highlighting
1216
+ regex: /%[QWX]?([(\[<{^|%])/, onMatch: function (val, state, stack) {
1217
+ if (stack.length)
1218
+ stack = [];
1219
+ var paren = val[val.length - 1];
1220
+ stack.unshift(paren, state);
1221
+ this.next = "qStateWithInterpolation";
1222
+ return this.token;
1223
+ }
1224
+ }, {
1225
+ token: "constant.other.symbol.ruby", //doesn't see any differences between symbols and array of symbols in highlighting
1226
+ regex: /%[si]([(\[<{^|%])/, onMatch: function (val, state, stack) {
1227
+ if (stack.length)
1228
+ stack = [];
1229
+ var paren = val[val.length - 1];
1230
+ stack.unshift(paren, state);
1231
+ this.next = "sStateWithoutInterpolation";
1232
+ return this.token;
1233
+ }
1234
+ }, {
1235
+ token: "constant.other.symbol.ruby", //doesn't see any differences between symbols and array of symbols in highlighting
1236
+ regex: /%[SI]([(\[<{^|%])/, onMatch: function (val, state, stack) {
1237
+ if (stack.length)
1238
+ stack = [];
1239
+ var paren = val[val.length - 1];
1240
+ stack.unshift(paren, state);
1241
+ this.next = "sStateWithInterpolation";
1242
+ return this.token;
1243
+ }
1244
+ }, {
1245
+ token: "string.regexp",
1246
+ regex: /%[r]([(\[<{^|%])/, onMatch: function (val, state, stack) {
1247
+ if (stack.length)
1248
+ stack = [];
1249
+ var paren = val[val.length - 1];
1250
+ stack.unshift(paren, state);
1251
+ this.next = "rState";
1252
+ return this.token;
1253
+ }
1254
+ }],
1255
+
1256
+ {
1257
+ token: "punctuation", // namespaces aren't symbols
1258
+ regex: "::"
1259
+ },
1260
+ instanceVariable,
1261
+ {
1262
+ token: "variable.global", // global variable
1263
+ regex: "[$][a-zA-Z_\\d]+"
1264
+ }, {
1265
+ token: "support.class", // class name
1266
+ regex: "[A-Z][a-zA-Z_\\d]*"
1267
+ }, {
1268
+ token: ["punctuation.operator", "support.function"],
1269
+ regex: /(\.)([a-zA-Z_\d]+)(?=\()/
1270
+ }, {
1271
+ token: ["punctuation.operator", "identifier"],
1272
+ regex: /(\.)([a-zA-Z_][a-zA-Z_\d]*)/
1273
+ }, {
1274
+ token: "string.character",
1275
+ regex: "\\B\\?(?:" + escapedChars + "|\\S)"
1276
+ }, {
1277
+ token: "punctuation.operator",
1278
+ regex: /\?(?=.+:)/
1279
+ },
1280
+
1281
+ constantNumericRational,
1282
+ constantNumericComplex,
1283
+ constantOtherSymbol,
1284
+ constantNumericHex,
1285
+ constantNumericFloat,
1286
+ constantNumericBinary,
1287
+ constantNumericDecimal,
1288
+ constantNumericOctal,
1289
+ {
1290
+ token: "constant.language.boolean",
1291
+ regex: "(?:true|false)\\b"
1292
+ }, {
1293
+ token: keywordMapper,
1294
+ regex: "[a-zA-Z_$][a-zA-Z0-9_$]*\\b"
1295
+ }, {
1296
+ token: "punctuation.separator.key-value",
1297
+ regex: "=>"
1298
+ }, {
1299
+ stateName: "heredoc",
1300
+ onMatch: function (value, currentState, stack) {
1301
+ var next = (value[2] == '-' || value[2] == '~') ? "indentedHeredoc" : "heredoc";
1302
+ var tokens = value.split(this.splitRegex);
1303
+ stack.push(next, tokens[3]);
1304
+ return [
1305
+ {type: "constant", value: tokens[1]},
1306
+ {type: "string", value: tokens[2]},
1307
+ {type: "support.class", value: tokens[3]},
1308
+ {type: "string", value: tokens[4]}
1309
+ ];
1310
+ },
1311
+ regex: "(<<[-~]?)(['\"`]?)([\\w]+)(['\"`]?)",
1312
+ rules: {
1313
+ heredoc: [{
1314
+ onMatch: function(value, currentState, stack) {
1315
+ if (value === stack[1]) {
1316
+ stack.shift();
1317
+ stack.shift();
1318
+ this.next = stack[0] || "start";
1319
+ return "support.class";
1320
+ }
1321
+ this.next = "";
1322
+ return "string";
1323
+ },
1324
+ regex: ".*$",
1325
+ next: "start"
1326
+ }],
1327
+ indentedHeredoc: [{
1328
+ token: "string",
1329
+ regex: "^ +"
1330
+ }, {
1331
+ onMatch: function(value, currentState, stack) {
1332
+ if (value === stack[1]) {
1333
+ stack.shift();
1334
+ stack.shift();
1335
+ this.next = stack[0] || "start";
1336
+ return "support.class";
1337
+ }
1338
+ this.next = "";
1339
+ return "string";
1340
+ },
1341
+ regex: ".*$",
1342
+ next: "start"
1343
+ }]
1344
+ }
1345
+ }, {
1346
+ regex: "$",
1347
+ token: "empty",
1348
+ next: function(currentState, stack) {
1349
+ if (stack[0] === "heredoc" || stack[0] === "indentedHeredoc")
1350
+ return stack[0];
1351
+ return currentState;
1352
+ }
1353
+ }, {
1354
+ token: "keyword.operator",
1355
+ regex: "!|\\$|%|&|\\*|/|\\-\\-|\\-|\\+\\+|\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\|\\||\\?\\:|\\*=|%=|\\+=|\\-=|&=|\\^=|\\||\\b(?:in|instanceof|new|delete|typeof|void)"
1356
+ }, {
1357
+ token: "paren.lparen",
1358
+ regex: "[[({]"
1359
+ }, {
1360
+ token: "paren.rparen",
1361
+ regex: "[\\])}]",
1362
+ onMatch: function(value, currentState, stack) {
1363
+ this.next = '';
1364
+ if (value == "}" && stack.length > 1 && stack[1] != "start") {
1365
+ stack.shift();
1366
+ this.next = stack.shift();
1367
+ }
1368
+ return this.token;
1369
+ }
1370
+ }, {
1371
+ token: "text",
1372
+ regex: "\\s+"
1373
+ }, {
1374
+ token: "punctuation.operator",
1375
+ regex: /[?:,;.]/
1376
+ }
1377
+ ],
1378
+ "comment": [
1379
+ {
1380
+ token: "comment.multiline", // closing comment
1381
+ regex: "^=end(?=$|\\s.*$)",
1382
+ next: "start"
1383
+ }, {
1384
+ token: "comment", // comment spanning whole line
1385
+ regex: ".+"
1386
+ }
1387
+ ],
1388
+ "qStateWithInterpolation": [{
1389
+ token: "string.start",// excluded nested |^% due to difficulty in realization
1390
+ regex: /[(\[<{]/, onMatch: function (val, state, stack) {
1391
+ if (stack.length && val === stack[0]) {
1392
+ stack.unshift(val, state);
1393
+ return this.token;
1394
+ }
1395
+ return "string";
1396
+ }
1397
+ }, {
1398
+ token: "constant.language.escape",
1399
+ regex: escapedChars
1400
+ }, {
1401
+ token: "constant.language.escape",
1402
+ regex: /\\./
1403
+ }, {
1404
+ token: "paren.start",
1405
+ regex: /#{/,
1406
+ push: "start"
1407
+ }, {
1408
+ token: "string.end",
1409
+ regex: /[)\]>}^|%]/, onMatch: function (val, state, stack) {
1410
+ if (stack.length && val === closeParen[stack[0]]) {
1411
+ stack.shift();
1412
+ this.next = stack.shift();
1413
+ return this.token;
1414
+ }
1415
+ this.next = '';
1416
+ return "string";
1417
+ }
1418
+ }, {
1419
+ defaultToken: "string"
1420
+ }],
1421
+ "qStateWithoutInterpolation": [{
1422
+ token: "string.start",// excluded nested |^% due to difficulty in realization
1423
+ regex: /[(\[<{]/, onMatch: function (val, state, stack) {
1424
+ if (stack.length && val === stack[0]) {
1425
+ stack.unshift(val, state);
1426
+ return this.token;
1427
+ }
1428
+ return "string";
1429
+ }
1430
+ }, {
1431
+ token: "constant.language.escape",
1432
+ regex: /\\['\\]/
1433
+ }, {
1434
+ token: "constant.language.escape",
1435
+ regex: /\\./
1436
+ }, {
1437
+ token: "string.end",
1438
+ regex: /[)\]>}^|%]/, onMatch: function (val, state, stack) {
1439
+ if (stack.length && val === closeParen[stack[0]]) {
1440
+ stack.shift();
1441
+ this.next = stack.shift();
1442
+ return this.token;
1443
+ }
1444
+ this.next = '';
1445
+ return "string";
1446
+ }
1447
+ }, {
1448
+ defaultToken: "string"
1449
+ }],
1450
+ "sStateWithoutInterpolation": [{
1451
+ token: "constant.other.symbol.ruby",// excluded nested |^% due to difficulty in realization
1452
+ regex: /[(\[<{]/, onMatch: function (val, state, stack) {
1453
+ if (stack.length && val === stack[0]) {
1454
+ stack.unshift(val, state);
1455
+ return this.token;
1456
+ }
1457
+ return "constant.other.symbol.ruby";
1458
+ }
1459
+ }, {
1460
+ token: "constant.other.symbol.ruby",
1461
+ regex: /[)\]>}^|%]/, onMatch: function (val, state, stack) {
1462
+ if (stack.length && val === closeParen[stack[0]]) {
1463
+ stack.shift();
1464
+ this.next = stack.shift();
1465
+ return this.token;
1466
+ }
1467
+ this.next = '';
1468
+ return "constant.other.symbol.ruby";
1469
+ }
1470
+ }, {
1471
+ defaultToken: "constant.other.symbol.ruby"
1472
+ }],
1473
+ "sStateWithInterpolation": [{
1474
+ token: "constant.other.symbol.ruby",// excluded nested |^% due to difficulty in realization
1475
+ regex: /[(\[<{]/, onMatch: function (val, state, stack) {
1476
+ if (stack.length && val === stack[0]) {
1477
+ stack.unshift(val, state);
1478
+ return this.token;
1479
+ }
1480
+ return "constant.other.symbol.ruby";
1481
+ }
1482
+ }, {
1483
+ token: "constant.language.escape",
1484
+ regex: escapedChars
1485
+ }, {
1486
+ token: "constant.language.escape",
1487
+ regex: /\\./
1488
+ }, {
1489
+ token: "paren.start",
1490
+ regex: /#{/,
1491
+ push: "start"
1492
+ }, {
1493
+ token: "constant.other.symbol.ruby",
1494
+ regex: /[)\]>}^|%]/, onMatch: function (val, state, stack) {
1495
+ if (stack.length && val === closeParen[stack[0]]) {
1496
+ stack.shift();
1497
+ this.next = stack.shift();
1498
+ return this.token;
1499
+ }
1500
+ this.next = '';
1501
+ return "constant.other.symbol.ruby";
1502
+ }
1503
+ }, {
1504
+ defaultToken: "constant.other.symbol.ruby"
1505
+ }],
1506
+ "rState": [{
1507
+ token: "string.regexp",// excluded nested |^% due to difficulty in realization
1508
+ regex: /[(\[<{]/, onMatch: function (val, state, stack) {
1509
+ if (stack.length && val === stack[0]) {
1510
+ stack.unshift(val, state);
1511
+ return this.token;
1512
+ }
1513
+ return "constant.language.escape";
1514
+ }
1515
+ }, {
1516
+ token: "paren.start",
1517
+ regex: /#{/,
1518
+ push: "start"
1519
+ }, {
1520
+ token: "string.regexp",
1521
+ regex: /\//
1522
+ }, {
1523
+ token: "string.regexp",
1524
+ regex: /[)\]>}^|%][imxouesn]*/, onMatch: function (val, state, stack) {
1525
+ if (stack.length && val[0] === closeParen[stack[0]]) {
1526
+ stack.shift();
1527
+ this.next = stack.shift();
1528
+ return this.token;
1529
+ }
1530
+ this.next = '';
1531
+ return "constant.language.escape";
1532
+ }
1533
+ },
1534
+ {include: "regex"},
1535
+ {
1536
+ defaultToken: "string.regexp"
1537
+ }],
1538
+ "regex": [
1539
+ {// character classes
1540
+ token: "regexp.keyword",
1541
+ regex: /\\[wWdDhHsS]/
1542
+ }, {
1543
+ token: "constant.language.escape",
1544
+ regex: /\\[AGbBzZ]/
1545
+ }, {
1546
+ token: "constant.language.escape",
1547
+ regex: /\\g<[a-zA-Z0-9]*>/
1548
+ }, {
1549
+ token: ["constant.language.escape", "regexp.keyword", "constant.language.escape"],
1550
+ regex: /(\\p{\^?)(Alnum|Alpha|Blank|Cntrl|Digit|Graph|Lower|Print|Punct|Space|Upper|XDigit|Word|ASCII|Any|Assigned|Arabic|Armenian|Balinese|Bengali|Bopomofo|Braille|Buginese|Buhid|Canadian_Aboriginal|Carian|Cham|Cherokee|Common|Coptic|Cuneiform|Cypriot|Cyrillic|Deseret|Devanagari|Ethiopic|Georgian|Glagolitic|Gothic|Greek|Gujarati|Gurmukhi|Han|Hangul|Hanunoo|Hebrew|Hiragana|Inherited|Kannada|Katakana|Kayah_Li|Kharoshthi|Khmer|Lao|Latin|Lepcha|Limbu|Linear_B|Lycian|Lydian|Malayalam|Mongolian|Myanmar|New_Tai_Lue|Nko|Ogham|Ol_Chiki|Old_Italic|Old_Persian|Oriya|Osmanya|Phags_Pa|Phoenician|Rejang|Runic|Saurashtra|Shavian|Sinhala|Sundanese|Syloti_Nagri|Syriac|Tagalog|Tagbanwa|Tai_Le|Tamil|Telugu|Thaana|Thai|Tibetan|Tifinagh|Ugaritic|Vai|Yi|Ll|Lm|Lt|Lu|Lo|Mn|Mc|Me|Nd|Nl|Pc|Pd|Ps|Pe|Pi|Pf|Po|No|Sm|Sc|Sk|So|Zs|Zl|Zp|Cc|Cf|Cn|Co|Cs|N|L|M|P|S|Z|C)(})/
1551
+ }, {
1552
+ token: ["constant.language.escape", "invalid", "constant.language.escape"],
1553
+ regex: /(\\p{\^?)([^/]*)(})/
1554
+ }, {// escapes
1555
+ token: "regexp.keyword.operator",
1556
+ regex: "\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"
1557
+ }, {// flag
1558
+ token: "string.regexp",
1559
+ regex: /[/][imxouesn]*/,
1560
+ next: "start"
1561
+ }, {// invalid operators
1562
+ token: "invalid",
1563
+ regex: /\{\d+\b,?\d*\}[+*]|[+*$^?][+*]|[$^][?]|\?{3,}/
1564
+ }, {// operators
1565
+ token: "constant.language.escape",
1566
+ regex: /\(\?(?:[:=!>]|<'?[a-zA-Z]*'?>|<[=!])|\)|\{\d+\b,?\d*\}|[+*]\?|[()$^+*?.]/
1567
+ }, {
1568
+ token: "constant.language.delimiter",
1569
+ regex: /\|/
1570
+ }, {
1571
+ token: "regexp.keyword",
1572
+ regex: /\[\[:(?:alnum|alpha|blank|cntrl|digit|graph|lower|print|punct|space|upper|xdigit|word|ascii):\]\]/
1573
+ }, {
1574
+ token: "constant.language.escape",
1575
+ regex: /\[\^?/,
1576
+ push: "regex_character_class"
1577
+ }, {
1578
+ defaultToken: "string.regexp"
1579
+ }
1580
+ ],
1581
+ "regex_character_class": [
1582
+ {
1583
+ token: "regexp.keyword",
1584
+ regex: /\\[wWdDhHsS]/
1585
+ }, {
1586
+ token: "regexp.charclass.keyword.operator",
1587
+ regex: "\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"
1588
+ }, {
1589
+ token: "constant.language.escape",
1590
+ regex: /&?&?\[\^?/,
1591
+ push: "regex_character_class"
1592
+ }, {
1593
+ token: "constant.language.escape",
1594
+ regex: "]",
1595
+ next: "pop"
1596
+ }, {
1597
+ token: "constant.language.escape",
1598
+ regex: "-"
1599
+ }, {
1600
+ defaultToken: "string.regexp.characterclass"
1601
+ }
1602
+ ]
1603
+ };
1604
+
1605
+ this.normalizeRules();
1606
+ };
1607
+
1608
+ oop.inherits(RubyHighlightRules, TextHighlightRules);
1609
+
1610
+ exports.RubyHighlightRules = RubyHighlightRules;
1611
+ });
1612
+
1613
+ ace.define("ace/mode/html_ruby_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/html_highlight_rules","ace/mode/ruby_highlight_rules"], function(require, exports, module) {
1614
+ "use strict";
1615
+
1616
+ var oop = require("../lib/oop");
1617
+ var HtmlHighlightRules = require("./html_highlight_rules").HtmlHighlightRules;
1618
+ var RubyHighlightRules = require("./ruby_highlight_rules").RubyHighlightRules;
1619
+
1620
+ var HtmlRubyHighlightRules = function() {
1621
+ HtmlHighlightRules.call(this);
1622
+
1623
+ var startRules = [
1624
+ {
1625
+ regex: "<%%|%%>",
1626
+ token: "constant.language.escape"
1627
+ }, {
1628
+ token : "comment.start.erb",
1629
+ regex : "<%#",
1630
+ push : [{
1631
+ token : "comment.end.erb",
1632
+ regex: "%>",
1633
+ next: "pop",
1634
+ defaultToken:"comment"
1635
+ }]
1636
+ }, {
1637
+ token : "support.ruby_tag",
1638
+ regex : "<%+(?!>)[-=]?",
1639
+ push : "ruby-start"
1640
+ }
1641
+ ];
1642
+
1643
+ var endRules = [
1644
+ {
1645
+ token : "support.ruby_tag",
1646
+ regex : "%>",
1647
+ next : "pop"
1648
+ }, {
1649
+ token: "comment",
1650
+ regex: "#(?:[^%]|%[^>])*"
1651
+ }
1652
+ ];
1653
+
1654
+ for (var key in this.$rules)
1655
+ this.$rules[key].unshift.apply(this.$rules[key], startRules);
1656
+
1657
+ this.embedRules(RubyHighlightRules, "ruby-", endRules, ["start"]);
1658
+
1659
+ this.normalizeRules();
1660
+ };
1661
+
1662
+
1663
+ oop.inherits(HtmlRubyHighlightRules, HtmlHighlightRules);
1664
+
1665
+ exports.HtmlRubyHighlightRules = HtmlRubyHighlightRules;
1666
+ });
1667
+
1668
+ ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"], function(require, exports, module) {
1669
+ "use strict";
1670
+
1671
+ var Range = require("../range").Range;
1672
+
1673
+ var MatchingBraceOutdent = function() {};
1674
+
1675
+ (function() {
1676
+
1677
+ this.checkOutdent = function(line, input) {
1678
+ if (! /^\s+$/.test(line))
1679
+ return false;
1680
+
1681
+ return /^\s*\}/.test(input);
1682
+ };
1683
+
1684
+ this.autoOutdent = function(doc, row) {
1685
+ var line = doc.getLine(row);
1686
+ var match = line.match(/^(\s*\})/);
1687
+
1688
+ if (!match) return 0;
1689
+
1690
+ var column = match[1].length;
1691
+ var openBracePos = doc.findMatchingBracket({row: row, column: column});
1692
+
1693
+ if (!openBracePos || openBracePos.row == row) return 0;
1694
+
1695
+ var indent = this.$getIndent(doc.getLine(openBracePos.row));
1696
+ doc.replace(new Range(row, 0, row, column-1), indent);
1697
+ };
1698
+
1699
+ this.$getIndent = function(line) {
1700
+ return line.match(/^\s*/)[0];
1701
+ };
1702
+
1703
+ }).call(MatchingBraceOutdent.prototype);
1704
+
1705
+ exports.MatchingBraceOutdent = MatchingBraceOutdent;
1706
+ });
1707
+
1708
+ ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"], function(require, exports, module) {
1709
+ "use strict";
1710
+
1711
+ var oop = require("../../lib/oop");
1712
+ var Range = require("../../range").Range;
1713
+ var BaseFoldMode = require("./fold_mode").FoldMode;
1714
+
1715
+ var FoldMode = exports.FoldMode = function(commentRegex) {
1716
+ if (commentRegex) {
1717
+ this.foldingStartMarker = new RegExp(
1718
+ this.foldingStartMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.start)
1719
+ );
1720
+ this.foldingStopMarker = new RegExp(
1721
+ this.foldingStopMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.end)
1722
+ );
1723
+ }
1724
+ };
1725
+ oop.inherits(FoldMode, BaseFoldMode);
1726
+
1727
+ (function() {
1728
+
1729
+ this.foldingStartMarker = /([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/;
1730
+ this.foldingStopMarker = /^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/;
1731
+ this.singleLineBlockCommentRe= /^\s*(\/\*).*\*\/\s*$/;
1732
+ this.tripleStarBlockCommentRe = /^\s*(\/\*\*\*).*\*\/\s*$/;
1733
+ this.startRegionRe = /^\s*(\/\*|\/\/)#?region\b/;
1734
+ this._getFoldWidgetBase = this.getFoldWidget;
1735
+ this.getFoldWidget = function(session, foldStyle, row) {
1736
+ var line = session.getLine(row);
1737
+
1738
+ if (this.singleLineBlockCommentRe.test(line)) {
1739
+ if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))
1740
+ return "";
1741
+ }
1742
+
1743
+ var fw = this._getFoldWidgetBase(session, foldStyle, row);
1744
+
1745
+ if (!fw && this.startRegionRe.test(line))
1746
+ return "start"; // lineCommentRegionStart
1747
+
1748
+ return fw;
1749
+ };
1750
+
1751
+ this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {
1752
+ var line = session.getLine(row);
1753
+
1754
+ if (this.startRegionRe.test(line))
1755
+ return this.getCommentRegionBlock(session, line, row);
1756
+
1757
+ var match = line.match(this.foldingStartMarker);
1758
+ if (match) {
1759
+ var i = match.index;
1760
+
1761
+ if (match[1])
1762
+ return this.openingBracketBlock(session, match[1], row, i);
1763
+
1764
+ var range = session.getCommentFoldRange(row, i + match[0].length, 1);
1765
+
1766
+ if (range && !range.isMultiLine()) {
1767
+ if (forceMultiline) {
1768
+ range = this.getSectionRange(session, row);
1769
+ } else if (foldStyle != "all")
1770
+ range = null;
1771
+ }
1772
+
1773
+ return range;
1774
+ }
1775
+
1776
+ if (foldStyle === "markbegin")
1777
+ return;
1778
+
1779
+ var match = line.match(this.foldingStopMarker);
1780
+ if (match) {
1781
+ var i = match.index + match[0].length;
1782
+
1783
+ if (match[1])
1784
+ return this.closingBracketBlock(session, match[1], row, i);
1785
+
1786
+ return session.getCommentFoldRange(row, i, -1);
1787
+ }
1788
+ };
1789
+
1790
+ this.getSectionRange = function(session, row) {
1791
+ var line = session.getLine(row);
1792
+ var startIndent = line.search(/\S/);
1793
+ var startRow = row;
1794
+ var startColumn = line.length;
1795
+ row = row + 1;
1796
+ var endRow = row;
1797
+ var maxRow = session.getLength();
1798
+ while (++row < maxRow) {
1799
+ line = session.getLine(row);
1800
+ var indent = line.search(/\S/);
1801
+ if (indent === -1)
1802
+ continue;
1803
+ if (startIndent > indent)
1804
+ break;
1805
+ var subRange = this.getFoldWidgetRange(session, "all", row);
1806
+
1807
+ if (subRange) {
1808
+ if (subRange.start.row <= startRow) {
1809
+ break;
1810
+ } else if (subRange.isMultiLine()) {
1811
+ row = subRange.end.row;
1812
+ } else if (startIndent == indent) {
1813
+ break;
1814
+ }
1815
+ }
1816
+ endRow = row;
1817
+ }
1818
+
1819
+ return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);
1820
+ };
1821
+ this.getCommentRegionBlock = function(session, line, row) {
1822
+ var startColumn = line.search(/\s*$/);
1823
+ var maxRow = session.getLength();
1824
+ var startRow = row;
1825
+
1826
+ var re = /^\s*(?:\/\*|\/\/|--)#?(end)?region\b/;
1827
+ var depth = 1;
1828
+ while (++row < maxRow) {
1829
+ line = session.getLine(row);
1830
+ var m = re.exec(line);
1831
+ if (!m) continue;
1832
+ if (m[1]) depth--;
1833
+ else depth++;
1834
+
1835
+ if (!depth) break;
1836
+ }
1837
+
1838
+ var endRow = row;
1839
+ if (endRow > startRow) {
1840
+ return new Range(startRow, startColumn, endRow, line.length);
1841
+ }
1842
+ };
1843
+
1844
+ }).call(FoldMode.prototype);
1845
+
1846
+ });
1847
+
1848
+ 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) {
1849
+ "use strict";
1850
+
1851
+ var oop = require("../lib/oop");
1852
+ var TextMode = require("./text").Mode;
1853
+ var JavaScriptHighlightRules = require("./javascript_highlight_rules").JavaScriptHighlightRules;
1854
+ var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
1855
+ var WorkerClient = require("../worker/worker_client").WorkerClient;
1856
+ var CstyleBehaviour = require("./behaviour/cstyle").CstyleBehaviour;
1857
+ var CStyleFoldMode = require("./folding/cstyle").FoldMode;
1858
+
1859
+ var Mode = function() {
1860
+ this.HighlightRules = JavaScriptHighlightRules;
1861
+
1862
+ this.$outdent = new MatchingBraceOutdent();
1863
+ this.$behaviour = new CstyleBehaviour();
1864
+ this.foldingRules = new CStyleFoldMode();
1865
+ };
1866
+ oop.inherits(Mode, TextMode);
1867
+
1868
+ (function() {
1869
+
1870
+ this.lineCommentStart = "//";
1871
+ this.blockComment = {start: "/*", end: "*/"};
1872
+ this.$quotes = {'"': '"', "'": "'", "`": "`"};
1873
+
1874
+ this.getNextLineIndent = function(state, line, tab) {
1875
+ var indent = this.$getIndent(line);
1876
+
1877
+ var tokenizedLine = this.getTokenizer().getLineTokens(line, state);
1878
+ var tokens = tokenizedLine.tokens;
1879
+ var endState = tokenizedLine.state;
1880
+
1881
+ if (tokens.length && tokens[tokens.length-1].type == "comment") {
1882
+ return indent;
1883
+ }
1884
+
1885
+ if (state == "start" || state == "no_regex") {
1886
+ var match = line.match(/^.*(?:\bcase\b.*:|[\{\(\[])\s*$/);
1887
+ if (match) {
1888
+ indent += tab;
1889
+ }
1890
+ } else if (state == "doc-start") {
1891
+ if (endState == "start" || endState == "no_regex") {
1892
+ return "";
1893
+ }
1894
+ var match = line.match(/^\s*(\/?)\*/);
1895
+ if (match) {
1896
+ if (match[1]) {
1897
+ indent += " ";
1898
+ }
1899
+ indent += "* ";
1900
+ }
1901
+ }
1902
+
1903
+ return indent;
1904
+ };
1905
+
1906
+ this.checkOutdent = function(state, line, input) {
1907
+ return this.$outdent.checkOutdent(line, input);
1908
+ };
1909
+
1910
+ this.autoOutdent = function(state, doc, row) {
1911
+ this.$outdent.autoOutdent(doc, row);
1912
+ };
1913
+
1914
+ this.createWorker = function(session) {
1915
+ var worker = new WorkerClient(["ace"], "ace/mode/javascript_worker", "JavaScriptWorker");
1916
+ worker.attachToDocument(session.getDocument());
1917
+
1918
+ worker.on("annotate", function(results) {
1919
+ session.setAnnotations(results.data);
1920
+ });
1921
+
1922
+ worker.on("terminate", function() {
1923
+ session.clearAnnotations();
1924
+ });
1925
+
1926
+ return worker;
1927
+ };
1928
+
1929
+ this.$id = "ace/mode/javascript";
1930
+ this.snippetFileId = "ace/snippets/javascript";
1931
+ }).call(Mode.prototype);
1932
+
1933
+ exports.Mode = Mode;
1934
+ });
1935
+
1936
+ ace.define("ace/mode/css_completions",["require","exports","module"], function(require, exports, module) {
1937
+ "use strict";
1938
+
1939
+ var propertyMap = {
1940
+ "background": {"#$0": 1},
1941
+ "background-color": {"#$0": 1, "transparent": 1, "fixed": 1},
1942
+ "background-image": {"url('/$0')": 1},
1943
+ "background-repeat": {"repeat": 1, "repeat-x": 1, "repeat-y": 1, "no-repeat": 1, "inherit": 1},
1944
+ "background-position": {"bottom":2, "center":2, "left":2, "right":2, "top":2, "inherit":2},
1945
+ "background-attachment": {"scroll": 1, "fixed": 1},
1946
+ "background-size": {"cover": 1, "contain": 1},
1947
+ "background-clip": {"border-box": 1, "padding-box": 1, "content-box": 1},
1948
+ "background-origin": {"border-box": 1, "padding-box": 1, "content-box": 1},
1949
+ "border": {"solid $0": 1, "dashed $0": 1, "dotted $0": 1, "#$0": 1},
1950
+ "border-color": {"#$0": 1},
1951
+ "border-style": {"solid":2, "dashed":2, "dotted":2, "double":2, "groove":2, "hidden":2, "inherit":2, "inset":2, "none":2, "outset":2, "ridged":2},
1952
+ "border-collapse": {"collapse": 1, "separate": 1},
1953
+ "bottom": {"px": 1, "em": 1, "%": 1},
1954
+ "clear": {"left": 1, "right": 1, "both": 1, "none": 1},
1955
+ "color": {"#$0": 1, "rgb(#$00,0,0)": 1},
1956
+ "cursor": {"default": 1, "pointer": 1, "move": 1, "text": 1, "wait": 1, "help": 1, "progress": 1, "n-resize": 1, "ne-resize": 1, "e-resize": 1, "se-resize": 1, "s-resize": 1, "sw-resize": 1, "w-resize": 1, "nw-resize": 1},
1957
+ "display": {"none": 1, "block": 1, "inline": 1, "inline-block": 1, "table-cell": 1},
1958
+ "empty-cells": {"show": 1, "hide": 1},
1959
+ "float": {"left": 1, "right": 1, "none": 1},
1960
+ "font-family": {"Arial":2,"Comic Sans MS":2,"Consolas":2,"Courier New":2,"Courier":2,"Georgia":2,"Monospace":2,"Sans-Serif":2, "Segoe UI":2,"Tahoma":2,"Times New Roman":2,"Trebuchet MS":2,"Verdana": 1},
1961
+ "font-size": {"px": 1, "em": 1, "%": 1},
1962
+ "font-weight": {"bold": 1, "normal": 1},
1963
+ "font-style": {"italic": 1, "normal": 1},
1964
+ "font-variant": {"normal": 1, "small-caps": 1},
1965
+ "height": {"px": 1, "em": 1, "%": 1},
1966
+ "left": {"px": 1, "em": 1, "%": 1},
1967
+ "letter-spacing": {"normal": 1},
1968
+ "line-height": {"normal": 1},
1969
+ "list-style-type": {"none": 1, "disc": 1, "circle": 1, "square": 1, "decimal": 1, "decimal-leading-zero": 1, "lower-roman": 1, "upper-roman": 1, "lower-greek": 1, "lower-latin": 1, "upper-latin": 1, "georgian": 1, "lower-alpha": 1, "upper-alpha": 1},
1970
+ "margin": {"px": 1, "em": 1, "%": 1},
1971
+ "margin-right": {"px": 1, "em": 1, "%": 1},
1972
+ "margin-left": {"px": 1, "em": 1, "%": 1},
1973
+ "margin-top": {"px": 1, "em": 1, "%": 1},
1974
+ "margin-bottom": {"px": 1, "em": 1, "%": 1},
1975
+ "max-height": {"px": 1, "em": 1, "%": 1},
1976
+ "max-width": {"px": 1, "em": 1, "%": 1},
1977
+ "min-height": {"px": 1, "em": 1, "%": 1},
1978
+ "min-width": {"px": 1, "em": 1, "%": 1},
1979
+ "overflow": {"hidden": 1, "visible": 1, "auto": 1, "scroll": 1},
1980
+ "overflow-x": {"hidden": 1, "visible": 1, "auto": 1, "scroll": 1},
1981
+ "overflow-y": {"hidden": 1, "visible": 1, "auto": 1, "scroll": 1},
1982
+ "padding": {"px": 1, "em": 1, "%": 1},
1983
+ "padding-top": {"px": 1, "em": 1, "%": 1},
1984
+ "padding-right": {"px": 1, "em": 1, "%": 1},
1985
+ "padding-bottom": {"px": 1, "em": 1, "%": 1},
1986
+ "padding-left": {"px": 1, "em": 1, "%": 1},
1987
+ "page-break-after": {"auto": 1, "always": 1, "avoid": 1, "left": 1, "right": 1},
1988
+ "page-break-before": {"auto": 1, "always": 1, "avoid": 1, "left": 1, "right": 1},
1989
+ "position": {"absolute": 1, "relative": 1, "fixed": 1, "static": 1},
1990
+ "right": {"px": 1, "em": 1, "%": 1},
1991
+ "table-layout": {"fixed": 1, "auto": 1},
1992
+ "text-decoration": {"none": 1, "underline": 1, "line-through": 1, "blink": 1},
1993
+ "text-align": {"left": 1, "right": 1, "center": 1, "justify": 1},
1994
+ "text-transform": {"capitalize": 1, "uppercase": 1, "lowercase": 1, "none": 1},
1995
+ "top": {"px": 1, "em": 1, "%": 1},
1996
+ "vertical-align": {"top": 1, "bottom": 1},
1997
+ "visibility": {"hidden": 1, "visible": 1},
1998
+ "white-space": {"nowrap": 1, "normal": 1, "pre": 1, "pre-line": 1, "pre-wrap": 1},
1999
+ "width": {"px": 1, "em": 1, "%": 1},
2000
+ "word-spacing": {"normal": 1},
2001
+ "filter": {"alpha(opacity=$0100)": 1},
2002
+
2003
+ "text-shadow": {"$02px 2px 2px #777": 1},
2004
+ "text-overflow": {"ellipsis-word": 1, "clip": 1, "ellipsis": 1},
2005
+ "-moz-border-radius": 1,
2006
+ "-moz-border-radius-topright": 1,
2007
+ "-moz-border-radius-bottomright": 1,
2008
+ "-moz-border-radius-topleft": 1,
2009
+ "-moz-border-radius-bottomleft": 1,
2010
+ "-webkit-border-radius": 1,
2011
+ "-webkit-border-top-right-radius": 1,
2012
+ "-webkit-border-top-left-radius": 1,
2013
+ "-webkit-border-bottom-right-radius": 1,
2014
+ "-webkit-border-bottom-left-radius": 1,
2015
+ "-moz-box-shadow": 1,
2016
+ "-webkit-box-shadow": 1,
2017
+ "transform": {"rotate($00deg)": 1, "skew($00deg)": 1},
2018
+ "-moz-transform": {"rotate($00deg)": 1, "skew($00deg)": 1},
2019
+ "-webkit-transform": {"rotate($00deg)": 1, "skew($00deg)": 1 }
2020
+ };
2021
+
2022
+ var CssCompletions = function() {
2023
+
2024
+ };
2025
+
2026
+ (function() {
2027
+
2028
+ this.completionsDefined = false;
2029
+
2030
+ this.defineCompletions = function() {
2031
+ if (document) {
2032
+ var style = document.createElement('c').style;
2033
+
2034
+ for (var i in style) {
2035
+ if (typeof style[i] !== 'string')
2036
+ continue;
2037
+
2038
+ var name = i.replace(/[A-Z]/g, function(x) {
2039
+ return '-' + x.toLowerCase();
2040
+ });
2041
+
2042
+ if (!propertyMap.hasOwnProperty(name))
2043
+ propertyMap[name] = 1;
2044
+ }
2045
+ }
2046
+
2047
+ this.completionsDefined = true;
2048
+ };
2049
+
2050
+ this.getCompletions = function(state, session, pos, prefix) {
2051
+ if (!this.completionsDefined) {
2052
+ this.defineCompletions();
2053
+ }
2054
+
2055
+ if (state==='ruleset' || session.$mode.$id == "ace/mode/scss") {
2056
+ var line = session.getLine(pos.row).substr(0, pos.column);
2057
+ if (/:[^;]+$/.test(line)) {
2058
+ /([\w\-]+):[^:]*$/.test(line);
2059
+
2060
+ return this.getPropertyValueCompletions(state, session, pos, prefix);
2061
+ } else {
2062
+ return this.getPropertyCompletions(state, session, pos, prefix);
2063
+ }
2064
+ }
2065
+
2066
+ return [];
2067
+ };
2068
+
2069
+ this.getPropertyCompletions = function(state, session, pos, prefix) {
2070
+ var properties = Object.keys(propertyMap);
2071
+ return properties.map(function(property){
2072
+ return {
2073
+ caption: property,
2074
+ snippet: property + ': $0;',
2075
+ meta: "property",
2076
+ score: 1000000
2077
+ };
2078
+ });
2079
+ };
2080
+
2081
+ this.getPropertyValueCompletions = function(state, session, pos, prefix) {
2082
+ var line = session.getLine(pos.row).substr(0, pos.column);
2083
+ var property = (/([\w\-]+):[^:]*$/.exec(line) || {})[1];
2084
+
2085
+ if (!property)
2086
+ return [];
2087
+ var values = [];
2088
+ if (property in propertyMap && typeof propertyMap[property] === "object") {
2089
+ values = Object.keys(propertyMap[property]);
2090
+ }
2091
+ return values.map(function(value){
2092
+ return {
2093
+ caption: value,
2094
+ snippet: value,
2095
+ meta: "property value",
2096
+ score: 1000000
2097
+ };
2098
+ });
2099
+ };
2100
+
2101
+ }).call(CssCompletions.prototype);
2102
+
2103
+ exports.CssCompletions = CssCompletions;
2104
+ });
2105
+
2106
+ ace.define("ace/mode/behaviour/css",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/mode/behaviour/cstyle","ace/token_iterator"], function(require, exports, module) {
2107
+ "use strict";
2108
+
2109
+ var oop = require("../../lib/oop");
2110
+ var Behaviour = require("../behaviour").Behaviour;
2111
+ var CstyleBehaviour = require("./cstyle").CstyleBehaviour;
2112
+ var TokenIterator = require("../../token_iterator").TokenIterator;
2113
+
2114
+ var CssBehaviour = function () {
2115
+
2116
+ this.inherit(CstyleBehaviour);
2117
+
2118
+ this.add("colon", "insertion", function (state, action, editor, session, text) {
2119
+ if (text === ':' && editor.selection.isEmpty()) {
2120
+ var cursor = editor.getCursorPosition();
2121
+ var iterator = new TokenIterator(session, cursor.row, cursor.column);
2122
+ var token = iterator.getCurrentToken();
2123
+ if (token && token.value.match(/\s+/)) {
2124
+ token = iterator.stepBackward();
2125
+ }
2126
+ if (token && token.type === 'support.type') {
2127
+ var line = session.doc.getLine(cursor.row);
2128
+ var rightChar = line.substring(cursor.column, cursor.column + 1);
2129
+ if (rightChar === ':') {
2130
+ return {
2131
+ text: '',
2132
+ selection: [1, 1]
2133
+ };
2134
+ }
2135
+ if (/^(\s+[^;]|\s*$)/.test(line.substring(cursor.column))) {
2136
+ return {
2137
+ text: ':;',
2138
+ selection: [1, 1]
2139
+ };
2140
+ }
2141
+ }
2142
+ }
2143
+ });
2144
+
2145
+ this.add("colon", "deletion", function (state, action, editor, session, range) {
2146
+ var selected = session.doc.getTextRange(range);
2147
+ if (!range.isMultiLine() && selected === ':') {
2148
+ var cursor = editor.getCursorPosition();
2149
+ var iterator = new TokenIterator(session, cursor.row, cursor.column);
2150
+ var token = iterator.getCurrentToken();
2151
+ if (token && token.value.match(/\s+/)) {
2152
+ token = iterator.stepBackward();
2153
+ }
2154
+ if (token && token.type === 'support.type') {
2155
+ var line = session.doc.getLine(range.start.row);
2156
+ var rightChar = line.substring(range.end.column, range.end.column + 1);
2157
+ if (rightChar === ';') {
2158
+ range.end.column ++;
2159
+ return range;
2160
+ }
2161
+ }
2162
+ }
2163
+ });
2164
+
2165
+ this.add("semicolon", "insertion", function (state, action, editor, session, text) {
2166
+ if (text === ';' && editor.selection.isEmpty()) {
2167
+ var cursor = editor.getCursorPosition();
2168
+ var line = session.doc.getLine(cursor.row);
2169
+ var rightChar = line.substring(cursor.column, cursor.column + 1);
2170
+ if (rightChar === ';') {
2171
+ return {
2172
+ text: '',
2173
+ selection: [1, 1]
2174
+ };
2175
+ }
2176
+ }
2177
+ });
2178
+
2179
+ this.add("!important", "insertion", function (state, action, editor, session, text) {
2180
+ if (text === '!' && editor.selection.isEmpty()) {
2181
+ var cursor = editor.getCursorPosition();
2182
+ var line = session.doc.getLine(cursor.row);
2183
+
2184
+ if (/^\s*(;|}|$)/.test(line.substring(cursor.column))) {
2185
+ return {
2186
+ text: '!important',
2187
+ selection: [10, 10]
2188
+ };
2189
+ }
2190
+ }
2191
+ });
2192
+
2193
+ };
2194
+ oop.inherits(CssBehaviour, CstyleBehaviour);
2195
+
2196
+ exports.CssBehaviour = CssBehaviour;
2197
+ });
2198
+
2199
+ ace.define("ace/mode/css",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/css_highlight_rules","ace/mode/matching_brace_outdent","ace/worker/worker_client","ace/mode/css_completions","ace/mode/behaviour/css","ace/mode/folding/cstyle"], function(require, exports, module) {
2200
+ "use strict";
2201
+
2202
+ var oop = require("../lib/oop");
2203
+ var TextMode = require("./text").Mode;
2204
+ var CssHighlightRules = require("./css_highlight_rules").CssHighlightRules;
2205
+ var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
2206
+ var WorkerClient = require("../worker/worker_client").WorkerClient;
2207
+ var CssCompletions = require("./css_completions").CssCompletions;
2208
+ var CssBehaviour = require("./behaviour/css").CssBehaviour;
2209
+ var CStyleFoldMode = require("./folding/cstyle").FoldMode;
2210
+
2211
+ var Mode = function() {
2212
+ this.HighlightRules = CssHighlightRules;
2213
+ this.$outdent = new MatchingBraceOutdent();
2214
+ this.$behaviour = new CssBehaviour();
2215
+ this.$completer = new CssCompletions();
2216
+ this.foldingRules = new CStyleFoldMode();
2217
+ };
2218
+ oop.inherits(Mode, TextMode);
2219
+
2220
+ (function() {
2221
+
2222
+ this.foldingRules = "cStyle";
2223
+ this.blockComment = {start: "/*", end: "*/"};
2224
+
2225
+ this.getNextLineIndent = function(state, line, tab) {
2226
+ var indent = this.$getIndent(line);
2227
+ var tokens = this.getTokenizer().getLineTokens(line, state).tokens;
2228
+ if (tokens.length && tokens[tokens.length-1].type == "comment") {
2229
+ return indent;
2230
+ }
2231
+
2232
+ var match = line.match(/^.*\{\s*$/);
2233
+ if (match) {
2234
+ indent += tab;
2235
+ }
2236
+
2237
+ return indent;
2238
+ };
2239
+
2240
+ this.checkOutdent = function(state, line, input) {
2241
+ return this.$outdent.checkOutdent(line, input);
2242
+ };
2243
+
2244
+ this.autoOutdent = function(state, doc, row) {
2245
+ this.$outdent.autoOutdent(doc, row);
2246
+ };
2247
+
2248
+ this.getCompletions = function(state, session, pos, prefix) {
2249
+ return this.$completer.getCompletions(state, session, pos, prefix);
2250
+ };
2251
+
2252
+ this.createWorker = function(session) {
2253
+ var worker = new WorkerClient(["ace"], "ace/mode/css_worker", "Worker");
2254
+ worker.attachToDocument(session.getDocument());
2255
+
2256
+ worker.on("annotate", function(e) {
2257
+ session.setAnnotations(e.data);
2258
+ });
2259
+
2260
+ worker.on("terminate", function() {
2261
+ session.clearAnnotations();
2262
+ });
2263
+
2264
+ return worker;
2265
+ };
2266
+
2267
+ this.$id = "ace/mode/css";
2268
+ this.snippetFileId = "ace/snippets/css";
2269
+ }).call(Mode.prototype);
2270
+
2271
+ exports.Mode = Mode;
2272
+
2273
+ });
2274
+
2275
+ ace.define("ace/mode/behaviour/xml",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"], function(require, exports, module) {
2276
+ "use strict";
2277
+
2278
+ var oop = require("../../lib/oop");
2279
+ var Behaviour = require("../behaviour").Behaviour;
2280
+ var TokenIterator = require("../../token_iterator").TokenIterator;
2281
+ var lang = require("../../lib/lang");
2282
+
2283
+ function is(token, type) {
2284
+ return token && token.type.lastIndexOf(type + ".xml") > -1;
2285
+ }
2286
+
2287
+ var XmlBehaviour = function () {
2288
+
2289
+ this.add("string_dquotes", "insertion", function (state, action, editor, session, text) {
2290
+ if (text == '"' || text == "'") {
2291
+ var quote = text;
2292
+ var selected = session.doc.getTextRange(editor.getSelectionRange());
2293
+ if (selected !== "" && selected !== "'" && selected != '"' && editor.getWrapBehavioursEnabled()) {
2294
+ return {
2295
+ text: quote + selected + quote,
2296
+ selection: false
2297
+ };
2298
+ }
2299
+
2300
+ var cursor = editor.getCursorPosition();
2301
+ var line = session.doc.getLine(cursor.row);
2302
+ var rightChar = line.substring(cursor.column, cursor.column + 1);
2303
+ var iterator = new TokenIterator(session, cursor.row, cursor.column);
2304
+ var token = iterator.getCurrentToken();
2305
+
2306
+ if (rightChar == quote && (is(token, "attribute-value") || is(token, "string"))) {
2307
+ return {
2308
+ text: "",
2309
+ selection: [1, 1]
2310
+ };
2311
+ }
2312
+
2313
+ if (!token)
2314
+ token = iterator.stepBackward();
2315
+
2316
+ if (!token)
2317
+ return;
2318
+
2319
+ while (is(token, "tag-whitespace") || is(token, "whitespace")) {
2320
+ token = iterator.stepBackward();
2321
+ }
2322
+ var rightSpace = !rightChar || rightChar.match(/\s/);
2323
+ if (is(token, "attribute-equals") && (rightSpace || rightChar == '>') || (is(token, "decl-attribute-equals") && (rightSpace || rightChar == '?'))) {
2324
+ return {
2325
+ text: quote + quote,
2326
+ selection: [1, 1]
2327
+ };
2328
+ }
2329
+ }
2330
+ });
2331
+
2332
+ this.add("string_dquotes", "deletion", function(state, action, editor, session, range) {
2333
+ var selected = session.doc.getTextRange(range);
2334
+ if (!range.isMultiLine() && (selected == '"' || selected == "'")) {
2335
+ var line = session.doc.getLine(range.start.row);
2336
+ var rightChar = line.substring(range.start.column + 1, range.start.column + 2);
2337
+ if (rightChar == selected) {
2338
+ range.end.column++;
2339
+ return range;
2340
+ }
2341
+ }
2342
+ });
2343
+
2344
+ this.add("autoclosing", "insertion", function (state, action, editor, session, text) {
2345
+ if (text == '>') {
2346
+ var position = editor.getSelectionRange().start;
2347
+ var iterator = new TokenIterator(session, position.row, position.column);
2348
+ var token = iterator.getCurrentToken() || iterator.stepBackward();
2349
+ if (!token || !(is(token, "tag-name") || is(token, "tag-whitespace") || is(token, "attribute-name") || is(token, "attribute-equals") || is(token, "attribute-value")))
2350
+ return;
2351
+ if (is(token, "reference.attribute-value"))
2352
+ return;
2353
+ if (is(token, "attribute-value")) {
2354
+ var tokenEndColumn = iterator.getCurrentTokenColumn() + token.value.length;
2355
+ if (position.column < tokenEndColumn)
2356
+ return;
2357
+ if (position.column == tokenEndColumn) {
2358
+ var nextToken = iterator.stepForward();
2359
+ if (nextToken && is(nextToken, "attribute-value"))
2360
+ return;
2361
+ iterator.stepBackward();
2362
+ }
2363
+ }
2364
+
2365
+ if (/^\s*>/.test(session.getLine(position.row).slice(position.column)))
2366
+ return;
2367
+ while (!is(token, "tag-name")) {
2368
+ token = iterator.stepBackward();
2369
+ if (token.value == "<") {
2370
+ token = iterator.stepForward();
2371
+ break;
2372
+ }
2373
+ }
2374
+
2375
+ var tokenRow = iterator.getCurrentTokenRow();
2376
+ var tokenColumn = iterator.getCurrentTokenColumn();
2377
+ if (is(iterator.stepBackward(), "end-tag-open"))
2378
+ return;
2379
+
2380
+ var element = token.value;
2381
+ if (tokenRow == position.row)
2382
+ element = element.substring(0, position.column - tokenColumn);
2383
+
2384
+ if (this.voidElements.hasOwnProperty(element.toLowerCase()))
2385
+ return;
2386
+
2387
+ return {
2388
+ text: ">" + "</" + element + ">",
2389
+ selection: [1, 1]
2390
+ };
2391
+ }
2392
+ });
2393
+
2394
+ this.add("autoindent", "insertion", function (state, action, editor, session, text) {
2395
+ if (text == "\n") {
2396
+ var cursor = editor.getCursorPosition();
2397
+ var line = session.getLine(cursor.row);
2398
+ var iterator = new TokenIterator(session, cursor.row, cursor.column);
2399
+ var token = iterator.getCurrentToken();
2400
+
2401
+ if (token && token.type.indexOf("tag-close") !== -1) {
2402
+ if (token.value == "/>")
2403
+ return;
2404
+ while (token && token.type.indexOf("tag-name") === -1) {
2405
+ token = iterator.stepBackward();
2406
+ }
2407
+
2408
+ if (!token) {
2409
+ return;
2410
+ }
2411
+
2412
+ var tag = token.value;
2413
+ var row = iterator.getCurrentTokenRow();
2414
+ token = iterator.stepBackward();
2415
+ if (!token || token.type.indexOf("end-tag") !== -1) {
2416
+ return;
2417
+ }
2418
+
2419
+ if (this.voidElements && !this.voidElements[tag]) {
2420
+ var nextToken = session.getTokenAt(cursor.row, cursor.column+1);
2421
+ var line = session.getLine(row);
2422
+ var nextIndent = this.$getIndent(line);
2423
+ var indent = nextIndent + session.getTabString();
2424
+
2425
+ if (nextToken && nextToken.value === "</") {
2426
+ return {
2427
+ text: "\n" + indent + "\n" + nextIndent,
2428
+ selection: [1, indent.length, 1, indent.length]
2429
+ };
2430
+ } else {
2431
+ return {
2432
+ text: "\n" + indent
2433
+ };
2434
+ }
2435
+ }
2436
+ }
2437
+ }
2438
+ });
2439
+
2440
+ };
2441
+
2442
+ oop.inherits(XmlBehaviour, Behaviour);
2443
+
2444
+ exports.XmlBehaviour = XmlBehaviour;
2445
+ });
2446
+
2447
+ ace.define("ace/mode/folding/mixed",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode"], function(require, exports, module) {
2448
+ "use strict";
2449
+
2450
+ var oop = require("../../lib/oop");
2451
+ var BaseFoldMode = require("./fold_mode").FoldMode;
2452
+
2453
+ var FoldMode = exports.FoldMode = function(defaultMode, subModes) {
2454
+ this.defaultMode = defaultMode;
2455
+ this.subModes = subModes;
2456
+ };
2457
+ oop.inherits(FoldMode, BaseFoldMode);
2458
+
2459
+ (function() {
2460
+
2461
+
2462
+ this.$getMode = function(state) {
2463
+ if (typeof state != "string")
2464
+ state = state[0];
2465
+ for (var key in this.subModes) {
2466
+ if (state.indexOf(key) === 0)
2467
+ return this.subModes[key];
2468
+ }
2469
+ return null;
2470
+ };
2471
+
2472
+ this.$tryMode = function(state, session, foldStyle, row) {
2473
+ var mode = this.$getMode(state);
2474
+ return (mode ? mode.getFoldWidget(session, foldStyle, row) : "");
2475
+ };
2476
+
2477
+ this.getFoldWidget = function(session, foldStyle, row) {
2478
+ return (
2479
+ this.$tryMode(session.getState(row-1), session, foldStyle, row) ||
2480
+ this.$tryMode(session.getState(row), session, foldStyle, row) ||
2481
+ this.defaultMode.getFoldWidget(session, foldStyle, row)
2482
+ );
2483
+ };
2484
+
2485
+ this.getFoldWidgetRange = function(session, foldStyle, row) {
2486
+ var mode = this.$getMode(session.getState(row-1));
2487
+
2488
+ if (!mode || !mode.getFoldWidget(session, foldStyle, row))
2489
+ mode = this.$getMode(session.getState(row));
2490
+
2491
+ if (!mode || !mode.getFoldWidget(session, foldStyle, row))
2492
+ mode = this.defaultMode;
2493
+
2494
+ return mode.getFoldWidgetRange(session, foldStyle, row);
2495
+ };
2496
+
2497
+ }).call(FoldMode.prototype);
2498
+
2499
+ });
2500
+
2501
+ ace.define("ace/mode/folding/xml",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/range","ace/mode/folding/fold_mode","ace/token_iterator"], function(require, exports, module) {
2502
+ "use strict";
2503
+
2504
+ var oop = require("../../lib/oop");
2505
+ var lang = require("../../lib/lang");
2506
+ var Range = require("../../range").Range;
2507
+ var BaseFoldMode = require("./fold_mode").FoldMode;
2508
+ var TokenIterator = require("../../token_iterator").TokenIterator;
2509
+
2510
+ var FoldMode = exports.FoldMode = function(voidElements, optionalEndTags) {
2511
+ BaseFoldMode.call(this);
2512
+ this.voidElements = voidElements || {};
2513
+ this.optionalEndTags = oop.mixin({}, this.voidElements);
2514
+ if (optionalEndTags)
2515
+ oop.mixin(this.optionalEndTags, optionalEndTags);
2516
+
2517
+ };
2518
+ oop.inherits(FoldMode, BaseFoldMode);
2519
+
2520
+ var Tag = function() {
2521
+ this.tagName = "";
2522
+ this.closing = false;
2523
+ this.selfClosing = false;
2524
+ this.start = {row: 0, column: 0};
2525
+ this.end = {row: 0, column: 0};
2526
+ };
2527
+
2528
+ function is(token, type) {
2529
+ return token.type.lastIndexOf(type + ".xml") > -1;
2530
+ }
2531
+
2532
+ (function() {
2533
+
2534
+ this.getFoldWidget = function(session, foldStyle, row) {
2535
+ var tag = this._getFirstTagInLine(session, row);
2536
+
2537
+ if (!tag)
2538
+ return this.getCommentFoldWidget(session, row);
2539
+
2540
+ if (tag.closing || (!tag.tagName && tag.selfClosing))
2541
+ return foldStyle == "markbeginend" ? "end" : "";
2542
+
2543
+ if (!tag.tagName || tag.selfClosing || this.voidElements.hasOwnProperty(tag.tagName.toLowerCase()))
2544
+ return "";
2545
+
2546
+ if (this._findEndTagInLine(session, row, tag.tagName, tag.end.column))
2547
+ return "";
2548
+
2549
+ return "start";
2550
+ };
2551
+
2552
+ this.getCommentFoldWidget = function(session, row) {
2553
+ if (/comment/.test(session.getState(row)) && /<!-/.test(session.getLine(row)))
2554
+ return "start";
2555
+ return "";
2556
+ };
2557
+ this._getFirstTagInLine = function(session, row) {
2558
+ var tokens = session.getTokens(row);
2559
+ var tag = new Tag();
2560
+
2561
+ for (var i = 0; i < tokens.length; i++) {
2562
+ var token = tokens[i];
2563
+ if (is(token, "tag-open")) {
2564
+ tag.end.column = tag.start.column + token.value.length;
2565
+ tag.closing = is(token, "end-tag-open");
2566
+ token = tokens[++i];
2567
+ if (!token)
2568
+ return null;
2569
+ tag.tagName = token.value;
2570
+ tag.end.column += token.value.length;
2571
+ for (i++; i < tokens.length; i++) {
2572
+ token = tokens[i];
2573
+ tag.end.column += token.value.length;
2574
+ if (is(token, "tag-close")) {
2575
+ tag.selfClosing = token.value == '/>';
2576
+ break;
2577
+ }
2578
+ }
2579
+ return tag;
2580
+ } else if (is(token, "tag-close")) {
2581
+ tag.selfClosing = token.value == '/>';
2582
+ return tag;
2583
+ }
2584
+ tag.start.column += token.value.length;
2585
+ }
2586
+
2587
+ return null;
2588
+ };
2589
+
2590
+ this._findEndTagInLine = function(session, row, tagName, startColumn) {
2591
+ var tokens = session.getTokens(row);
2592
+ var column = 0;
2593
+ for (var i = 0; i < tokens.length; i++) {
2594
+ var token = tokens[i];
2595
+ column += token.value.length;
2596
+ if (column < startColumn)
2597
+ continue;
2598
+ if (is(token, "end-tag-open")) {
2599
+ token = tokens[i + 1];
2600
+ if (token && token.value == tagName)
2601
+ return true;
2602
+ }
2603
+ }
2604
+ return false;
2605
+ };
2606
+ this._readTagForward = function(iterator) {
2607
+ var token = iterator.getCurrentToken();
2608
+ if (!token)
2609
+ return null;
2610
+
2611
+ var tag = new Tag();
2612
+ do {
2613
+ if (is(token, "tag-open")) {
2614
+ tag.closing = is(token, "end-tag-open");
2615
+ tag.start.row = iterator.getCurrentTokenRow();
2616
+ tag.start.column = iterator.getCurrentTokenColumn();
2617
+ } else if (is(token, "tag-name")) {
2618
+ tag.tagName = token.value;
2619
+ } else if (is(token, "tag-close")) {
2620
+ tag.selfClosing = token.value == "/>";
2621
+ tag.end.row = iterator.getCurrentTokenRow();
2622
+ tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;
2623
+ iterator.stepForward();
2624
+ return tag;
2625
+ }
2626
+ } while(token = iterator.stepForward());
2627
+
2628
+ return null;
2629
+ };
2630
+
2631
+ this._readTagBackward = function(iterator) {
2632
+ var token = iterator.getCurrentToken();
2633
+ if (!token)
2634
+ return null;
2635
+
2636
+ var tag = new Tag();
2637
+ do {
2638
+ if (is(token, "tag-open")) {
2639
+ tag.closing = is(token, "end-tag-open");
2640
+ tag.start.row = iterator.getCurrentTokenRow();
2641
+ tag.start.column = iterator.getCurrentTokenColumn();
2642
+ iterator.stepBackward();
2643
+ return tag;
2644
+ } else if (is(token, "tag-name")) {
2645
+ tag.tagName = token.value;
2646
+ } else if (is(token, "tag-close")) {
2647
+ tag.selfClosing = token.value == "/>";
2648
+ tag.end.row = iterator.getCurrentTokenRow();
2649
+ tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;
2650
+ }
2651
+ } while(token = iterator.stepBackward());
2652
+
2653
+ return null;
2654
+ };
2655
+
2656
+ this._pop = function(stack, tag) {
2657
+ while (stack.length) {
2658
+
2659
+ var top = stack[stack.length-1];
2660
+ if (!tag || top.tagName == tag.tagName) {
2661
+ return stack.pop();
2662
+ }
2663
+ else if (this.optionalEndTags.hasOwnProperty(top.tagName)) {
2664
+ stack.pop();
2665
+ continue;
2666
+ } else {
2667
+ return null;
2668
+ }
2669
+ }
2670
+ };
2671
+
2672
+ this.getFoldWidgetRange = function(session, foldStyle, row) {
2673
+ var firstTag = this._getFirstTagInLine(session, row);
2674
+
2675
+ if (!firstTag) {
2676
+ return this.getCommentFoldWidget(session, row)
2677
+ && session.getCommentFoldRange(row, session.getLine(row).length);
2678
+ }
2679
+
2680
+ var isBackward = firstTag.closing || firstTag.selfClosing;
2681
+ var stack = [];
2682
+ var tag;
2683
+
2684
+ if (!isBackward) {
2685
+ var iterator = new TokenIterator(session, row, firstTag.start.column);
2686
+ var start = {
2687
+ row: row,
2688
+ column: firstTag.start.column + firstTag.tagName.length + 2
2689
+ };
2690
+ if (firstTag.start.row == firstTag.end.row)
2691
+ start.column = firstTag.end.column;
2692
+ while (tag = this._readTagForward(iterator)) {
2693
+ if (tag.selfClosing) {
2694
+ if (!stack.length) {
2695
+ tag.start.column += tag.tagName.length + 2;
2696
+ tag.end.column -= 2;
2697
+ return Range.fromPoints(tag.start, tag.end);
2698
+ } else
2699
+ continue;
2700
+ }
2701
+
2702
+ if (tag.closing) {
2703
+ this._pop(stack, tag);
2704
+ if (stack.length == 0)
2705
+ return Range.fromPoints(start, tag.start);
2706
+ }
2707
+ else {
2708
+ stack.push(tag);
2709
+ }
2710
+ }
2711
+ }
2712
+ else {
2713
+ var iterator = new TokenIterator(session, row, firstTag.end.column);
2714
+ var end = {
2715
+ row: row,
2716
+ column: firstTag.start.column
2717
+ };
2718
+
2719
+ while (tag = this._readTagBackward(iterator)) {
2720
+ if (tag.selfClosing) {
2721
+ if (!stack.length) {
2722
+ tag.start.column += tag.tagName.length + 2;
2723
+ tag.end.column -= 2;
2724
+ return Range.fromPoints(tag.start, tag.end);
2725
+ } else
2726
+ continue;
2727
+ }
2728
+
2729
+ if (!tag.closing) {
2730
+ this._pop(stack, tag);
2731
+ if (stack.length == 0) {
2732
+ tag.start.column += tag.tagName.length + 2;
2733
+ if (tag.start.row == tag.end.row && tag.start.column < tag.end.column)
2734
+ tag.start.column = tag.end.column;
2735
+ return Range.fromPoints(tag.start, end);
2736
+ }
2737
+ }
2738
+ else {
2739
+ stack.push(tag);
2740
+ }
2741
+ }
2742
+ }
2743
+
2744
+ };
2745
+
2746
+ }).call(FoldMode.prototype);
2747
+
2748
+ });
2749
+
2750
+ ace.define("ace/mode/folding/html",["require","exports","module","ace/lib/oop","ace/mode/folding/mixed","ace/mode/folding/xml","ace/mode/folding/cstyle"], function(require, exports, module) {
2751
+ "use strict";
2752
+
2753
+ var oop = require("../../lib/oop");
2754
+ var MixedFoldMode = require("./mixed").FoldMode;
2755
+ var XmlFoldMode = require("./xml").FoldMode;
2756
+ var CStyleFoldMode = require("./cstyle").FoldMode;
2757
+
2758
+ var FoldMode = exports.FoldMode = function(voidElements, optionalTags) {
2759
+ MixedFoldMode.call(this, new XmlFoldMode(voidElements, optionalTags), {
2760
+ "js-": new CStyleFoldMode(),
2761
+ "css-": new CStyleFoldMode()
2762
+ });
2763
+ };
2764
+
2765
+ oop.inherits(FoldMode, MixedFoldMode);
2766
+
2767
+ });
2768
+
2769
+ ace.define("ace/mode/html_completions",["require","exports","module","ace/token_iterator"], function(require, exports, module) {
2770
+ "use strict";
2771
+
2772
+ var TokenIterator = require("../token_iterator").TokenIterator;
2773
+
2774
+ var commonAttributes = [
2775
+ "accesskey",
2776
+ "class",
2777
+ "contenteditable",
2778
+ "contextmenu",
2779
+ "dir",
2780
+ "draggable",
2781
+ "dropzone",
2782
+ "hidden",
2783
+ "id",
2784
+ "inert",
2785
+ "itemid",
2786
+ "itemprop",
2787
+ "itemref",
2788
+ "itemscope",
2789
+ "itemtype",
2790
+ "lang",
2791
+ "spellcheck",
2792
+ "style",
2793
+ "tabindex",
2794
+ "title",
2795
+ "translate"
2796
+ ];
2797
+
2798
+ var eventAttributes = [
2799
+ "onabort",
2800
+ "onblur",
2801
+ "oncancel",
2802
+ "oncanplay",
2803
+ "oncanplaythrough",
2804
+ "onchange",
2805
+ "onclick",
2806
+ "onclose",
2807
+ "oncontextmenu",
2808
+ "oncuechange",
2809
+ "ondblclick",
2810
+ "ondrag",
2811
+ "ondragend",
2812
+ "ondragenter",
2813
+ "ondragleave",
2814
+ "ondragover",
2815
+ "ondragstart",
2816
+ "ondrop",
2817
+ "ondurationchange",
2818
+ "onemptied",
2819
+ "onended",
2820
+ "onerror",
2821
+ "onfocus",
2822
+ "oninput",
2823
+ "oninvalid",
2824
+ "onkeydown",
2825
+ "onkeypress",
2826
+ "onkeyup",
2827
+ "onload",
2828
+ "onloadeddata",
2829
+ "onloadedmetadata",
2830
+ "onloadstart",
2831
+ "onmousedown",
2832
+ "onmousemove",
2833
+ "onmouseout",
2834
+ "onmouseover",
2835
+ "onmouseup",
2836
+ "onmousewheel",
2837
+ "onpause",
2838
+ "onplay",
2839
+ "onplaying",
2840
+ "onprogress",
2841
+ "onratechange",
2842
+ "onreset",
2843
+ "onscroll",
2844
+ "onseeked",
2845
+ "onseeking",
2846
+ "onselect",
2847
+ "onshow",
2848
+ "onstalled",
2849
+ "onsubmit",
2850
+ "onsuspend",
2851
+ "ontimeupdate",
2852
+ "onvolumechange",
2853
+ "onwaiting"
2854
+ ];
2855
+
2856
+ var globalAttributes = commonAttributes.concat(eventAttributes);
2857
+
2858
+ var attributeMap = {
2859
+ "a": {"href": 1, "target": {"_blank": 1, "top": 1}, "ping": 1, "rel": {"nofollow": 1, "alternate": 1, "author": 1, "bookmark": 1, "help": 1, "license": 1, "next": 1, "noreferrer": 1, "prefetch": 1, "prev": 1, "search": 1, "tag": 1}, "media": 1, "hreflang": 1, "type": 1},
2860
+ "abbr": {},
2861
+ "address": {},
2862
+ "area": {"shape": 1, "coords": 1, "href": 1, "hreflang": 1, "alt": 1, "target": 1, "media": 1, "rel": 1, "ping": 1, "type": 1},
2863
+ "article": {"pubdate": 1},
2864
+ "aside": {},
2865
+ "audio": {"src": 1, "autobuffer": 1, "autoplay": {"autoplay": 1}, "loop": {"loop": 1}, "controls": {"controls": 1}, "muted": {"muted": 1}, "preload": {"auto": 1, "metadata": 1, "none": 1 }},
2866
+ "b": {},
2867
+ "base": {"href": 1, "target": 1},
2868
+ "bdi": {},
2869
+ "bdo": {},
2870
+ "blockquote": {"cite": 1},
2871
+ "body": {"onafterprint": 1, "onbeforeprint": 1, "onbeforeunload": 1, "onhashchange": 1, "onmessage": 1, "onoffline": 1, "onpopstate": 1, "onredo": 1, "onresize": 1, "onstorage": 1, "onundo": 1, "onunload": 1},
2872
+ "br": {},
2873
+ "button": {"autofocus": 1, "disabled": {"disabled": 1}, "form": 1, "formaction": 1, "formenctype": 1, "formmethod": 1, "formnovalidate": 1, "formtarget": 1, "name": 1, "value": 1, "type": {"button": 1, "submit": 1}},
2874
+ "canvas": {"width": 1, "height": 1},
2875
+ "caption": {},
2876
+ "cite": {},
2877
+ "code": {},
2878
+ "col": {"span": 1},
2879
+ "colgroup": {"span": 1},
2880
+ "command": {"type": 1, "label": 1, "icon": 1, "disabled": 1, "checked": 1, "radiogroup": 1, "command": 1},
2881
+ "data": {},
2882
+ "datalist": {},
2883
+ "dd": {},
2884
+ "del": {"cite": 1, "datetime": 1},
2885
+ "details": {"open": 1},
2886
+ "dfn": {},
2887
+ "dialog": {"open": 1},
2888
+ "div": {},
2889
+ "dl": {},
2890
+ "dt": {},
2891
+ "em": {},
2892
+ "embed": {"src": 1, "height": 1, "width": 1, "type": 1},
2893
+ "fieldset": {"disabled": 1, "form": 1, "name": 1},
2894
+ "figcaption": {},
2895
+ "figure": {},
2896
+ "footer": {},
2897
+ "form": {"accept-charset": 1, "action": 1, "autocomplete": 1, "enctype": {"multipart/form-data": 1, "application/x-www-form-urlencoded": 1}, "method": {"get": 1, "post": 1}, "name": 1, "novalidate": 1, "target": {"_blank": 1, "top": 1}},
2898
+ "h1": {},
2899
+ "h2": {},
2900
+ "h3": {},
2901
+ "h4": {},
2902
+ "h5": {},
2903
+ "h6": {},
2904
+ "head": {},
2905
+ "header": {},
2906
+ "hr": {},
2907
+ "html": {"manifest": 1},
2908
+ "i": {},
2909
+ "iframe": {"name": 1, "src": 1, "height": 1, "width": 1, "sandbox": {"allow-same-origin": 1, "allow-top-navigation": 1, "allow-forms": 1, "allow-scripts": 1}, "seamless": {"seamless": 1}},
2910
+ "img": {"alt": 1, "src": 1, "height": 1, "width": 1, "usemap": 1, "ismap": 1},
2911
+ "input": {
2912
+ "type": {"text": 1, "password": 1, "hidden": 1, "checkbox": 1, "submit": 1, "radio": 1, "file": 1, "button": 1, "reset": 1, "image": 31, "color": 1, "date": 1, "datetime": 1, "datetime-local": 1, "email": 1, "month": 1, "number": 1, "range": 1, "search": 1, "tel": 1, "time": 1, "url": 1, "week": 1},
2913
+ "accept": 1, "alt": 1, "autocomplete": {"on": 1, "off": 1}, "autofocus": {"autofocus": 1}, "checked": {"checked": 1}, "disabled": {"disabled": 1}, "form": 1, "formaction": 1, "formenctype": {"application/x-www-form-urlencoded": 1, "multipart/form-data": 1, "text/plain": 1}, "formmethod": {"get": 1, "post": 1}, "formnovalidate": {"formnovalidate": 1}, "formtarget": {"_blank": 1, "_self": 1, "_parent": 1, "_top": 1}, "height": 1, "list": 1, "max": 1, "maxlength": 1, "min": 1, "multiple": {"multiple": 1}, "name": 1, "pattern": 1, "placeholder": 1, "readonly": {"readonly": 1}, "required": {"required": 1}, "size": 1, "src": 1, "step": 1, "width": 1, "files": 1, "value": 1},
2914
+ "ins": {"cite": 1, "datetime": 1},
2915
+ "kbd": {},
2916
+ "keygen": {"autofocus": 1, "challenge": {"challenge": 1}, "disabled": {"disabled": 1}, "form": 1, "keytype": {"rsa": 1, "dsa": 1, "ec": 1}, "name": 1},
2917
+ "label": {"form": 1, "for": 1},
2918
+ "legend": {},
2919
+ "li": {"value": 1},
2920
+ "link": {"href": 1, "hreflang": 1, "rel": {"stylesheet": 1, "icon": 1}, "media": {"all": 1, "screen": 1, "print": 1}, "type": {"text/css": 1, "image/png": 1, "image/jpeg": 1, "image/gif": 1}, "sizes": 1},
2921
+ "main": {},
2922
+ "map": {"name": 1},
2923
+ "mark": {},
2924
+ "math": {},
2925
+ "menu": {"type": 1, "label": 1},
2926
+ "meta": {"http-equiv": {"content-type": 1}, "name": {"description": 1, "keywords": 1}, "content": {"text/html; charset=UTF-8": 1}, "charset": 1},
2927
+ "meter": {"value": 1, "min": 1, "max": 1, "low": 1, "high": 1, "optimum": 1},
2928
+ "nav": {},
2929
+ "noscript": {"href": 1},
2930
+ "object": {"param": 1, "data": 1, "type": 1, "height" : 1, "width": 1, "usemap": 1, "name": 1, "form": 1, "classid": 1},
2931
+ "ol": {"start": 1, "reversed": 1},
2932
+ "optgroup": {"disabled": 1, "label": 1},
2933
+ "option": {"disabled": 1, "selected": 1, "label": 1, "value": 1},
2934
+ "output": {"for": 1, "form": 1, "name": 1},
2935
+ "p": {},
2936
+ "param": {"name": 1, "value": 1},
2937
+ "pre": {},
2938
+ "progress": {"value": 1, "max": 1},
2939
+ "q": {"cite": 1},
2940
+ "rp": {},
2941
+ "rt": {},
2942
+ "ruby": {},
2943
+ "s": {},
2944
+ "samp": {},
2945
+ "script": {"charset": 1, "type": {"text/javascript": 1}, "src": 1, "defer": 1, "async": 1},
2946
+ "select": {"autofocus": 1, "disabled": 1, "form": 1, "multiple": {"multiple": 1}, "name": 1, "size": 1, "readonly":{"readonly": 1}},
2947
+ "small": {},
2948
+ "source": {"src": 1, "type": 1, "media": 1},
2949
+ "span": {},
2950
+ "strong": {},
2951
+ "style": {"type": 1, "media": {"all": 1, "screen": 1, "print": 1}, "scoped": 1},
2952
+ "sub": {},
2953
+ "sup": {},
2954
+ "svg": {},
2955
+ "table": {"summary": 1},
2956
+ "tbody": {},
2957
+ "td": {"headers": 1, "rowspan": 1, "colspan": 1},
2958
+ "textarea": {"autofocus": {"autofocus": 1}, "disabled": {"disabled": 1}, "form": 1, "maxlength": 1, "name": 1, "placeholder": 1, "readonly": {"readonly": 1}, "required": {"required": 1}, "rows": 1, "cols": 1, "wrap": {"on": 1, "off": 1, "hard": 1, "soft": 1}},
2959
+ "tfoot": {},
2960
+ "th": {"headers": 1, "rowspan": 1, "colspan": 1, "scope": 1},
2961
+ "thead": {},
2962
+ "time": {"datetime": 1},
2963
+ "title": {},
2964
+ "tr": {},
2965
+ "track": {"kind": 1, "src": 1, "srclang": 1, "label": 1, "default": 1},
2966
+ "section": {},
2967
+ "summary": {},
2968
+ "u": {},
2969
+ "ul": {},
2970
+ "var": {},
2971
+ "video": {"src": 1, "autobuffer": 1, "autoplay": {"autoplay": 1}, "loop": {"loop": 1}, "controls": {"controls": 1}, "width": 1, "height": 1, "poster": 1, "muted": {"muted": 1}, "preload": {"auto": 1, "metadata": 1, "none": 1}},
2972
+ "wbr": {}
2973
+ };
2974
+
2975
+ var elements = Object.keys(attributeMap);
2976
+
2977
+ function is(token, type) {
2978
+ return token.type.lastIndexOf(type + ".xml") > -1;
2979
+ }
2980
+
2981
+ function findTagName(session, pos) {
2982
+ var iterator = new TokenIterator(session, pos.row, pos.column);
2983
+ var token = iterator.getCurrentToken();
2984
+ while (token && !is(token, "tag-name")){
2985
+ token = iterator.stepBackward();
2986
+ }
2987
+ if (token)
2988
+ return token.value;
2989
+ }
2990
+
2991
+ function findAttributeName(session, pos) {
2992
+ var iterator = new TokenIterator(session, pos.row, pos.column);
2993
+ var token = iterator.getCurrentToken();
2994
+ while (token && !is(token, "attribute-name")){
2995
+ token = iterator.stepBackward();
2996
+ }
2997
+ if (token)
2998
+ return token.value;
2999
+ }
3000
+
3001
+ var HtmlCompletions = function() {
3002
+
3003
+ };
3004
+
3005
+ (function() {
3006
+
3007
+ this.getCompletions = function(state, session, pos, prefix) {
3008
+ var token = session.getTokenAt(pos.row, pos.column);
3009
+
3010
+ if (!token)
3011
+ return [];
3012
+ if (is(token, "tag-name") || is(token, "tag-open") || is(token, "end-tag-open"))
3013
+ return this.getTagCompletions(state, session, pos, prefix);
3014
+ if (is(token, "tag-whitespace") || is(token, "attribute-name"))
3015
+ return this.getAttributeCompletions(state, session, pos, prefix);
3016
+ if (is(token, "attribute-value"))
3017
+ return this.getAttributeValueCompletions(state, session, pos, prefix);
3018
+ var line = session.getLine(pos.row).substr(0, pos.column);
3019
+ if (/&[a-z]*$/i.test(line))
3020
+ return this.getHTMLEntityCompletions(state, session, pos, prefix);
3021
+
3022
+ return [];
3023
+ };
3024
+
3025
+ this.getTagCompletions = function(state, session, pos, prefix) {
3026
+ return elements.map(function(element){
3027
+ return {
3028
+ value: element,
3029
+ meta: "tag",
3030
+ score: 1000000
3031
+ };
3032
+ });
3033
+ };
3034
+
3035
+ this.getAttributeCompletions = function(state, session, pos, prefix) {
3036
+ var tagName = findTagName(session, pos);
3037
+ if (!tagName)
3038
+ return [];
3039
+ var attributes = globalAttributes;
3040
+ if (tagName in attributeMap) {
3041
+ attributes = attributes.concat(Object.keys(attributeMap[tagName]));
3042
+ }
3043
+ return attributes.map(function(attribute){
3044
+ return {
3045
+ caption: attribute,
3046
+ snippet: attribute + '="$0"',
3047
+ meta: "attribute",
3048
+ score: 1000000
3049
+ };
3050
+ });
3051
+ };
3052
+
3053
+ this.getAttributeValueCompletions = function(state, session, pos, prefix) {
3054
+ var tagName = findTagName(session, pos);
3055
+ var attributeName = findAttributeName(session, pos);
3056
+
3057
+ if (!tagName)
3058
+ return [];
3059
+ var values = [];
3060
+ if (tagName in attributeMap && attributeName in attributeMap[tagName] && typeof attributeMap[tagName][attributeName] === "object") {
3061
+ values = Object.keys(attributeMap[tagName][attributeName]);
3062
+ }
3063
+ return values.map(function(value){
3064
+ return {
3065
+ caption: value,
3066
+ snippet: value,
3067
+ meta: "attribute value",
3068
+ score: 1000000
3069
+ };
3070
+ });
3071
+ };
3072
+
3073
+ this.getHTMLEntityCompletions = function(state, session, pos, prefix) {
3074
+ var values = ['Aacute;', 'aacute;', 'Acirc;', 'acirc;', 'acute;', 'AElig;', 'aelig;', 'Agrave;', 'agrave;', 'alefsym;', 'Alpha;', 'alpha;', 'amp;', 'and;', 'ang;', 'Aring;', 'aring;', 'asymp;', 'Atilde;', 'atilde;', 'Auml;', 'auml;', 'bdquo;', 'Beta;', 'beta;', 'brvbar;', 'bull;', 'cap;', 'Ccedil;', 'ccedil;', 'cedil;', 'cent;', 'Chi;', 'chi;', 'circ;', 'clubs;', 'cong;', 'copy;', 'crarr;', 'cup;', 'curren;', 'Dagger;', 'dagger;', 'dArr;', 'darr;', 'deg;', 'Delta;', 'delta;', 'diams;', 'divide;', 'Eacute;', 'eacute;', 'Ecirc;', 'ecirc;', 'Egrave;', 'egrave;', 'empty;', 'emsp;', 'ensp;', 'Epsilon;', 'epsilon;', 'equiv;', 'Eta;', 'eta;', 'ETH;', 'eth;', 'Euml;', 'euml;', 'euro;', 'exist;', 'fnof;', 'forall;', 'frac12;', 'frac14;', 'frac34;', 'frasl;', 'Gamma;', 'gamma;', 'ge;', 'gt;', 'hArr;', 'harr;', 'hearts;', 'hellip;', 'Iacute;', 'iacute;', 'Icirc;', 'icirc;', 'iexcl;', 'Igrave;', 'igrave;', 'image;', 'infin;', 'int;', 'Iota;', 'iota;', 'iquest;', 'isin;', 'Iuml;', 'iuml;', 'Kappa;', 'kappa;', 'Lambda;', 'lambda;', 'lang;', 'laquo;', 'lArr;', 'larr;', 'lceil;', 'ldquo;', 'le;', 'lfloor;', 'lowast;', 'loz;', 'lrm;', 'lsaquo;', 'lsquo;', 'lt;', 'macr;', 'mdash;', 'micro;', 'middot;', 'minus;', 'Mu;', 'mu;', 'nabla;', 'nbsp;', 'ndash;', 'ne;', 'ni;', 'not;', 'notin;', 'nsub;', 'Ntilde;', 'ntilde;', 'Nu;', 'nu;', 'Oacute;', 'oacute;', 'Ocirc;', 'ocirc;', 'OElig;', 'oelig;', 'Ograve;', 'ograve;', 'oline;', 'Omega;', 'omega;', 'Omicron;', 'omicron;', 'oplus;', 'or;', 'ordf;', 'ordm;', 'Oslash;', 'oslash;', 'Otilde;', 'otilde;', 'otimes;', 'Ouml;', 'ouml;', 'para;', 'part;', 'permil;', 'perp;', 'Phi;', 'phi;', 'Pi;', 'pi;', 'piv;', 'plusmn;', 'pound;', 'Prime;', 'prime;', 'prod;', 'prop;', 'Psi;', 'psi;', 'quot;', 'radic;', 'rang;', 'raquo;', 'rArr;', 'rarr;', 'rceil;', 'rdquo;', 'real;', 'reg;', 'rfloor;', 'Rho;', 'rho;', 'rlm;', 'rsaquo;', 'rsquo;', 'sbquo;', 'Scaron;', 'scaron;', 'sdot;', 'sect;', 'shy;', 'Sigma;', 'sigma;', 'sigmaf;', 'sim;', 'spades;', 'sub;', 'sube;', 'sum;', 'sup;', 'sup1;', 'sup2;', 'sup3;', 'supe;', 'szlig;', 'Tau;', 'tau;', 'there4;', 'Theta;', 'theta;', 'thetasym;', 'thinsp;', 'THORN;', 'thorn;', 'tilde;', 'times;', 'trade;', 'Uacute;', 'uacute;', 'uArr;', 'uarr;', 'Ucirc;', 'ucirc;', 'Ugrave;', 'ugrave;', 'uml;', 'upsih;', 'Upsilon;', 'upsilon;', 'Uuml;', 'uuml;', 'weierp;', 'Xi;', 'xi;', 'Yacute;', 'yacute;', 'yen;', 'Yuml;', 'yuml;', 'Zeta;', 'zeta;', 'zwj;', 'zwnj;'];
3075
+
3076
+ return values.map(function(value){
3077
+ return {
3078
+ caption: value,
3079
+ snippet: value,
3080
+ meta: "html entity",
3081
+ score: 1000000
3082
+ };
3083
+ });
3084
+ };
3085
+
3086
+ }).call(HtmlCompletions.prototype);
3087
+
3088
+ exports.HtmlCompletions = HtmlCompletions;
3089
+ });
3090
+
3091
+ ace.define("ace/mode/html",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text","ace/mode/javascript","ace/mode/css","ace/mode/html_highlight_rules","ace/mode/behaviour/xml","ace/mode/folding/html","ace/mode/html_completions","ace/worker/worker_client"], function(require, exports, module) {
3092
+ "use strict";
3093
+
3094
+ var oop = require("../lib/oop");
3095
+ var lang = require("../lib/lang");
3096
+ var TextMode = require("./text").Mode;
3097
+ var JavaScriptMode = require("./javascript").Mode;
3098
+ var CssMode = require("./css").Mode;
3099
+ var HtmlHighlightRules = require("./html_highlight_rules").HtmlHighlightRules;
3100
+ var XmlBehaviour = require("./behaviour/xml").XmlBehaviour;
3101
+ var HtmlFoldMode = require("./folding/html").FoldMode;
3102
+ var HtmlCompletions = require("./html_completions").HtmlCompletions;
3103
+ var WorkerClient = require("../worker/worker_client").WorkerClient;
3104
+ var voidElements = ["area", "base", "br", "col", "embed", "hr", "img", "input", "keygen", "link", "meta", "menuitem", "param", "source", "track", "wbr"];
3105
+ var optionalEndTags = ["li", "dt", "dd", "p", "rt", "rp", "optgroup", "option", "colgroup", "td", "th"];
3106
+
3107
+ var Mode = function(options) {
3108
+ this.fragmentContext = options && options.fragmentContext;
3109
+ this.HighlightRules = HtmlHighlightRules;
3110
+ this.$behaviour = new XmlBehaviour();
3111
+ this.$completer = new HtmlCompletions();
3112
+
3113
+ this.createModeDelegates({
3114
+ "js-": JavaScriptMode,
3115
+ "css-": CssMode
3116
+ });
3117
+
3118
+ this.foldingRules = new HtmlFoldMode(this.voidElements, lang.arrayToMap(optionalEndTags));
3119
+ };
3120
+ oop.inherits(Mode, TextMode);
3121
+
3122
+ (function() {
3123
+
3124
+ this.blockComment = {start: "<!--", end: "-->"};
3125
+
3126
+ this.voidElements = lang.arrayToMap(voidElements);
3127
+
3128
+ this.getNextLineIndent = function(state, line, tab) {
3129
+ return this.$getIndent(line);
3130
+ };
3131
+
3132
+ this.checkOutdent = function(state, line, input) {
3133
+ return false;
3134
+ };
3135
+
3136
+ this.getCompletions = function(state, session, pos, prefix) {
3137
+ return this.$completer.getCompletions(state, session, pos, prefix);
3138
+ };
3139
+
3140
+ this.createWorker = function(session) {
3141
+ if (this.constructor != Mode)
3142
+ return;
3143
+ var worker = new WorkerClient(["ace"], "ace/mode/html_worker", "Worker");
3144
+ worker.attachToDocument(session.getDocument());
3145
+
3146
+ if (this.fragmentContext)
3147
+ worker.call("setOptions", [{context: this.fragmentContext}]);
3148
+
3149
+ worker.on("error", function(e) {
3150
+ session.setAnnotations(e.data);
3151
+ });
3152
+
3153
+ worker.on("terminate", function() {
3154
+ session.clearAnnotations();
3155
+ });
3156
+
3157
+ return worker;
3158
+ };
3159
+
3160
+ this.$id = "ace/mode/html";
3161
+ this.snippetFileId = "ace/snippets/html";
3162
+ }).call(Mode.prototype);
3163
+
3164
+ exports.Mode = Mode;
3165
+ });
3166
+
3167
+ ace.define("ace/mode/folding/ruby",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode","ace/range","ace/token_iterator"], function (require, exports, module) {
3168
+ "use strict";
3169
+
3170
+ var oop = require("../../lib/oop");
3171
+ var BaseFoldMode = require("./fold_mode").FoldMode;
3172
+ var Range = require("../../range").Range;
3173
+ var TokenIterator = require("../../token_iterator").TokenIterator;
3174
+
3175
+
3176
+ var FoldMode = exports.FoldMode = function () {
3177
+ };
3178
+
3179
+ oop.inherits(FoldMode, BaseFoldMode);
3180
+
3181
+ (function () {
3182
+ this.indentKeywords = {
3183
+ "class": 1,
3184
+ "def": 1,
3185
+ "module": 1,
3186
+ "do": 1,
3187
+ "unless": 1,
3188
+ "if": 1,
3189
+ "while": 1,
3190
+ "for": 1,
3191
+ "until": 1,
3192
+ "begin": 1,
3193
+ "else": 0,
3194
+ "elsif": 0,
3195
+ "rescue": 0,
3196
+ "ensure": 0,
3197
+ "when": 0,
3198
+ "end": -1,
3199
+ "case": 1,
3200
+ "=begin": 1,
3201
+ "=end": -1
3202
+ };
3203
+
3204
+ this.foldingStartMarker = /(?:\s|^)(def|do|while|class|unless|module|if|for|until|begin|else|elsif|case|rescue|ensure|when)\b|({\s*$)|(=begin)/;
3205
+ this.foldingStopMarker = /(=end(?=$|\s.*$))|(^\s*})|\b(end)\b/;
3206
+
3207
+ this.getFoldWidget = function (session, foldStyle, row) {
3208
+ var line = session.getLine(row);
3209
+ var isStart = this.foldingStartMarker.test(line);
3210
+ var isEnd = this.foldingStopMarker.test(line);
3211
+
3212
+ if (isStart && !isEnd) {
3213
+ var match = line.match(this.foldingStartMarker);
3214
+ if (match[1]) {
3215
+ if (match[1] == "if" || match[1] == "else" || match[1] == "while" || match[1] == "until" || match[1] == "unless") {
3216
+ if (match[1] == "else" && /^\s*else\s*$/.test(line) === false) {
3217
+ return;
3218
+ }
3219
+ if (/^\s*(?:if|else|while|until|unless)\s*/.test(line) === false) {
3220
+ return;
3221
+ }
3222
+ }
3223
+
3224
+ if (match[1] == "when") {
3225
+ if (/\sthen\s/.test(line) === true) {
3226
+ return;
3227
+ }
3228
+ }
3229
+ if (session.getTokenAt(row, match.index + 2).type === "keyword")
3230
+ return "start";
3231
+ } else if (match[3]) {
3232
+ if (session.getTokenAt(row, match.index + 1).type === "comment.multiline")
3233
+ return "start";
3234
+ } else {
3235
+ return "start";
3236
+ }
3237
+ }
3238
+ if (foldStyle != "markbeginend" || !isEnd || isStart && isEnd)
3239
+ return "";
3240
+
3241
+ var match = line.match(this.foldingStopMarker);
3242
+ if (match[3] === "end") {
3243
+ if (session.getTokenAt(row, match.index + 1).type === "keyword")
3244
+ return "end";
3245
+ } else if (match[1]) {
3246
+ if (session.getTokenAt(row, match.index + 1).type === "comment.multiline")
3247
+ return "end";
3248
+ } else
3249
+ return "end";
3250
+ };
3251
+
3252
+ this.getFoldWidgetRange = function (session, foldStyle, row) {
3253
+ var line = session.doc.getLine(row);
3254
+ var match = this.foldingStartMarker.exec(line);
3255
+ if (match) {
3256
+ if (match[1] || match[3])
3257
+ return this.rubyBlock(session, row, match.index + 2);
3258
+
3259
+ return this.openingBracketBlock(session, "{", row, match.index);
3260
+ }
3261
+
3262
+ var match = this.foldingStopMarker.exec(line);
3263
+ if (match) {
3264
+ if (match[3] === "end") {
3265
+ if (session.getTokenAt(row, match.index + 1).type === "keyword")
3266
+ return this.rubyBlock(session, row, match.index + 1);
3267
+ }
3268
+
3269
+ if (match[1] === "=end") {
3270
+ if (session.getTokenAt(row, match.index + 1).type === "comment.multiline")
3271
+ return this.rubyBlock(session, row, match.index + 1);
3272
+ }
3273
+
3274
+ return this.closingBracketBlock(session, "}", row, match.index + match[0].length);
3275
+ }
3276
+ };
3277
+
3278
+ this.rubyBlock = function (session, row, column, tokenRange) {
3279
+ var stream = new TokenIterator(session, row, column);
3280
+
3281
+ var token = stream.getCurrentToken();
3282
+ if (!token || (token.type != "keyword" && token.type != "comment.multiline"))
3283
+ return;
3284
+
3285
+ var val = token.value;
3286
+ var line = session.getLine(row);
3287
+ switch (token.value) {
3288
+ case "if":
3289
+ case "unless":
3290
+ case "while":
3291
+ case "until":
3292
+ var checkToken = new RegExp("^\\s*" + token.value);
3293
+ if (!checkToken.test(line)) {
3294
+ return;
3295
+ }
3296
+ var dir = this.indentKeywords[val];
3297
+ break;
3298
+ case "when":
3299
+ if (/\sthen\s/.test(line)) {
3300
+ return;
3301
+ }
3302
+ case "elsif":
3303
+ case "rescue":
3304
+ case "ensure":
3305
+ var dir = 1;
3306
+ break;
3307
+ case "else":
3308
+ var checkToken = new RegExp("^\\s*" + token.value + "\\s*$");
3309
+ if (!checkToken.test(line)) {
3310
+ return;
3311
+ }
3312
+ var dir = 1;
3313
+ break;
3314
+ default:
3315
+ var dir = this.indentKeywords[val];
3316
+ break;
3317
+ }
3318
+
3319
+ var stack = [val];
3320
+ if (!dir)
3321
+ return;
3322
+
3323
+ var startColumn = dir === -1 ? session.getLine(row - 1).length : session.getLine(row).length;
3324
+ var startRow = row;
3325
+ var ranges = [];
3326
+ ranges.push(stream.getCurrentTokenRange());
3327
+
3328
+ stream.step = dir === -1 ? stream.stepBackward : stream.stepForward;
3329
+ if (token.type == "comment.multiline") {
3330
+ while (token = stream.step()) {
3331
+ if (token.type !== "comment.multiline")
3332
+ continue;
3333
+ if (dir == 1) {
3334
+ startColumn = 6;
3335
+ if (token.value == "=end") {
3336
+ break;
3337
+ }
3338
+ } else {
3339
+ if (token.value == "=begin") {
3340
+ break;
3341
+ }
3342
+ }
3343
+ }
3344
+ } else {
3345
+ while (token = stream.step()) {
3346
+ var ignore = false;
3347
+ if (token.type !== "keyword")
3348
+ continue;
3349
+ var level = dir * this.indentKeywords[token.value];
3350
+ line = session.getLine(stream.getCurrentTokenRow());
3351
+ switch (token.value) {
3352
+ case "do":
3353
+ for (var i = stream.$tokenIndex - 1; i >= 0; i--) {
3354
+ var prevToken = stream.$rowTokens[i];
3355
+ if (prevToken && (prevToken.value == "while" || prevToken.value == "until" || prevToken.value == "for")) {
3356
+ level = 0;
3357
+ break;
3358
+ }
3359
+ }
3360
+ break;
3361
+ case "else":
3362
+ var checkToken = new RegExp("^\\s*" + token.value + "\\s*$");
3363
+ if (!checkToken.test(line) || val == "case") {
3364
+ level = 0;
3365
+ ignore = true;
3366
+ }
3367
+ break;
3368
+ case "if":
3369
+ case "unless":
3370
+ case "while":
3371
+ case "until":
3372
+ var checkToken = new RegExp("^\\s*" + token.value);
3373
+ if (!checkToken.test(line)) {
3374
+ level = 0;
3375
+ ignore = true;
3376
+ }
3377
+ break;
3378
+ case "when":
3379
+ if (/\sthen\s/.test(line) || val == "case") {
3380
+ level = 0;
3381
+ ignore = true;
3382
+ }
3383
+ break;
3384
+ }
3385
+
3386
+ if (level > 0) {
3387
+ stack.unshift(token.value);
3388
+ } else if (level <= 0 && ignore === false) {
3389
+ stack.shift();
3390
+ if (!stack.length) {
3391
+ if ((val == "while" || val == "until" || val == "for") && token.value != "do") {
3392
+ break;
3393
+ }
3394
+ if (token.value == "do" && dir == -1 && level != 0)
3395
+ break;
3396
+ if (token.value != "do")
3397
+ break;
3398
+ }
3399
+
3400
+ if (level === 0) {
3401
+ stack.unshift(token.value);
3402
+ }
3403
+ }
3404
+ }
3405
+ }
3406
+
3407
+ if (!token)
3408
+ return null;
3409
+
3410
+ if (tokenRange) {
3411
+ ranges.push(stream.getCurrentTokenRange());
3412
+ return ranges;
3413
+ }
3414
+
3415
+ var row = stream.getCurrentTokenRow();
3416
+ if (dir === -1) {
3417
+ if (token.type === "comment.multiline") {
3418
+ var endColumn = 6;
3419
+ } else {
3420
+ var endColumn = session.getLine(row).length;
3421
+ }
3422
+ return new Range(row, endColumn, startRow - 1, startColumn);
3423
+ } else
3424
+ return new Range(startRow, startColumn, row - 1, session.getLine(row - 1).length);
3425
+ };
3426
+
3427
+ }).call(FoldMode.prototype);
3428
+
3429
+ });
3430
+
3431
+ ace.define("ace/mode/ruby",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/ruby_highlight_rules","ace/mode/matching_brace_outdent","ace/range","ace/mode/behaviour/cstyle","ace/mode/folding/ruby"], function(require, exports, module) {
3432
+ "use strict";
3433
+
3434
+ var oop = require("../lib/oop");
3435
+ var TextMode = require("./text").Mode;
3436
+ var RubyHighlightRules = require("./ruby_highlight_rules").RubyHighlightRules;
3437
+ var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
3438
+ var Range = require("../range").Range;
3439
+ var CstyleBehaviour = require("./behaviour/cstyle").CstyleBehaviour;
3440
+ var FoldMode = require("./folding/ruby").FoldMode;
3441
+
3442
+ var Mode = function() {
3443
+ this.HighlightRules = RubyHighlightRules;
3444
+ this.$outdent = new MatchingBraceOutdent();
3445
+ this.$behaviour = new CstyleBehaviour();
3446
+ this.foldingRules = new FoldMode();
3447
+ this.indentKeywords = this.foldingRules.indentKeywords;
3448
+ };
3449
+ oop.inherits(Mode, TextMode);
3450
+
3451
+ (function() {
3452
+
3453
+
3454
+ this.lineCommentStart = "#";
3455
+
3456
+ this.getNextLineIndent = function(state, line, tab) {
3457
+ var indent = this.$getIndent(line);
3458
+
3459
+ var tokenizedLine = this.getTokenizer().getLineTokens(line, state);
3460
+ var tokens = tokenizedLine.tokens;
3461
+
3462
+ if (tokens.length && tokens[tokens.length - 1].type == "comment") {
3463
+ return indent;
3464
+ }
3465
+
3466
+ if (state == "start") {
3467
+ var match = line.match(/^.*[\{\(\[]\s*$/);
3468
+ var startingClassOrMethod = line.match(/^\s*(class|def|module)\s.*$/);
3469
+ var startingDoBlock = line.match(/.*do(\s*|\s+\|.*\|\s*)$/);
3470
+ var startingConditional = line.match(/^\s*(if|else|when|elsif|unless|while|for|begin|rescue|ensure)\s*/);
3471
+ if (match || startingClassOrMethod || startingDoBlock || startingConditional) {
3472
+ indent += tab;
3473
+ }
3474
+ }
3475
+
3476
+ return indent;
3477
+ };
3478
+
3479
+ this.checkOutdent = function(state, line, input) {
3480
+ return /^\s+(end|else|rescue|ensure)$/.test(line + input) || this.$outdent.checkOutdent(line, input);
3481
+ };
3482
+
3483
+ this.autoOutdent = function(state, session, row) {
3484
+ var line = session.getLine(row);
3485
+ if (/}/.test(line))
3486
+ return this.$outdent.autoOutdent(session, row);
3487
+ var indent = this.$getIndent(line);
3488
+ var prevLine = session.getLine(row - 1);
3489
+ var prevIndent = this.$getIndent(prevLine);
3490
+ var tab = session.getTabString();
3491
+ if (prevIndent.length <= indent.length) {
3492
+ if (indent.slice(-tab.length) == tab)
3493
+ session.remove(new Range(row, indent.length - tab.length, row, indent.length));
3494
+ }
3495
+ };
3496
+
3497
+ this.getMatching = function(session, row, column) {
3498
+ if (row == undefined) {
3499
+ var pos = session.selection.lead;
3500
+ column = pos.column;
3501
+ row = pos.row;
3502
+ }
3503
+
3504
+ var startToken = session.getTokenAt(row, column);
3505
+ if (startToken && startToken.value in this.indentKeywords)
3506
+ return this.foldingRules.rubyBlock(session, row, column, true);
3507
+ };
3508
+
3509
+ this.$id = "ace/mode/ruby";
3510
+ this.snippetFileId = "ace/snippets/ruby";
3511
+ }).call(Mode.prototype);
3512
+
3513
+ exports.Mode = Mode;
3514
+ });
3515
+
3516
+ ace.define("ace/mode/html_ruby",["require","exports","module","ace/lib/oop","ace/mode/html_ruby_highlight_rules","ace/mode/html","ace/mode/javascript","ace/mode/css","ace/mode/ruby"], function(require, exports, module) {
3517
+ "use strict";
3518
+
3519
+ var oop = require("../lib/oop");
3520
+ var HtmlRubyHighlightRules = require("./html_ruby_highlight_rules").HtmlRubyHighlightRules;
3521
+ var HtmlMode = require("./html").Mode;
3522
+ var JavaScriptMode = require("./javascript").Mode;
3523
+ var CssMode = require("./css").Mode;
3524
+ var RubyMode = require("./ruby").Mode;
3525
+
3526
+ var Mode = function() {
3527
+ HtmlMode.call(this);
3528
+ this.HighlightRules = HtmlRubyHighlightRules;
3529
+ this.createModeDelegates({
3530
+ "js-": JavaScriptMode,
3531
+ "css-": CssMode,
3532
+ "ruby-": RubyMode
3533
+ });
3534
+ };
3535
+ oop.inherits(Mode, HtmlMode);
3536
+
3537
+ (function() {
3538
+
3539
+ this.$id = "ace/mode/html_ruby";
3540
+ }).call(Mode.prototype);
3541
+
3542
+ exports.Mode = Mode;
3543
+ }); (function() {
3544
+ ace.require(["ace/mode/html_ruby"], function(m) {
3545
+ if (typeof module == "object" && typeof exports == "object" && module) {
3546
+ module.exports = m;
3547
+ }
3548
+ });
3549
+ })();
3550
+