pygments.rb 1.2.1 → 2.0.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (378) hide show
  1. checksums.yaml +5 -5
  2. data/.github/dependabot.yml +13 -0
  3. data/.github/workflows/ci.yml +28 -0
  4. data/.github/workflows/release.yml +24 -0
  5. data/.gitignore +5 -6
  6. data/CHANGELOG.adoc +119 -0
  7. data/Gemfile +3 -1
  8. data/LICENSE +1 -1
  9. data/README.adoc +161 -0
  10. data/Rakefile +10 -21
  11. data/bench.rb +8 -7
  12. data/cache-lexers.rb +3 -2
  13. data/lib/pygments.rb +10 -11
  14. data/lib/pygments/lexer.rb +5 -5
  15. data/lib/pygments/mentos.py +23 -66
  16. data/lib/pygments/popen.rb +152 -204
  17. data/lib/pygments/version.rb +2 -2
  18. data/pygments.rb.gemspec +11 -9
  19. data/test/test_pygments.rb +51 -84
  20. data/vendor/pygments-main/{AUTHORS → Pygments-2.7.3.dist-info/AUTHORS} +21 -3
  21. data/vendor/pygments-main/Pygments-2.7.3.dist-info/INSTALLER +1 -0
  22. data/vendor/pygments-main/{LICENSE → Pygments-2.7.3.dist-info/LICENSE} +1 -1
  23. data/vendor/pygments-main/Pygments-2.7.3.dist-info/METADATA +49 -0
  24. data/vendor/pygments-main/Pygments-2.7.3.dist-info/RECORD +482 -0
  25. data/vendor/pygments-main/Pygments-2.7.3.dist-info/REQUESTED +0 -0
  26. data/vendor/pygments-main/Pygments-2.7.3.dist-info/WHEEL +5 -0
  27. data/vendor/pygments-main/Pygments-2.7.3.dist-info/entry_points.txt +3 -0
  28. data/vendor/pygments-main/Pygments-2.7.3.dist-info/top_level.txt +1 -0
  29. data/vendor/pygments-main/bin/pygmentize +8 -0
  30. data/vendor/pygments-main/pygments/__init__.py +6 -11
  31. data/vendor/pygments-main/pygments/__main__.py +18 -0
  32. data/vendor/pygments-main/pygments/cmdline.py +38 -29
  33. data/vendor/pygments-main/pygments/console.py +6 -9
  34. data/vendor/pygments-main/pygments/filter.py +4 -6
  35. data/vendor/pygments-main/pygments/filters/__init__.py +609 -21
  36. data/vendor/pygments-main/pygments/formatter.py +4 -4
  37. data/vendor/pygments-main/pygments/formatters/__init__.py +9 -8
  38. data/vendor/pygments-main/pygments/formatters/_mapping.py +1 -3
  39. data/vendor/pygments-main/pygments/formatters/bbcode.py +1 -1
  40. data/vendor/pygments-main/pygments/formatters/html.py +223 -135
  41. data/vendor/pygments-main/pygments/formatters/img.py +68 -41
  42. data/vendor/pygments-main/pygments/formatters/irc.py +39 -39
  43. data/vendor/pygments-main/pygments/formatters/latex.py +56 -26
  44. data/vendor/pygments-main/pygments/formatters/other.py +12 -8
  45. data/vendor/pygments-main/pygments/formatters/rtf.py +29 -29
  46. data/vendor/pygments-main/pygments/formatters/svg.py +38 -4
  47. data/vendor/pygments-main/pygments/formatters/terminal.py +25 -31
  48. data/vendor/pygments-main/pygments/formatters/terminal256.py +22 -12
  49. data/vendor/pygments-main/pygments/lexer.py +41 -39
  50. data/vendor/pygments-main/pygments/lexers/__init__.py +342 -0
  51. data/vendor/pygments-main/pygments/lexers/_asy_builtins.py +1645 -0
  52. data/vendor/pygments-main/pygments/lexers/_cl_builtins.py +232 -0
  53. data/vendor/pygments-main/pygments/lexers/_cocoa_builtins.py +71 -0
  54. data/vendor/pygments-main/pygments/lexers/_csound_builtins.py +1725 -0
  55. data/vendor/pygments-main/pygments/lexers/_lasso_builtins.py +5327 -0
  56. data/vendor/pygments-main/pygments/lexers/_lua_builtins.py +293 -0
  57. data/vendor/pygments-main/pygments/lexers/_mapping.py +551 -0
  58. data/vendor/pygments-main/pygments/lexers/_mql_builtins.py +1172 -0
  59. data/vendor/pygments-main/pygments/lexers/_mysql_builtins.py +1282 -0
  60. data/vendor/pygments-main/pygments/lexers/_openedge_builtins.py +2547 -0
  61. data/vendor/pygments-main/pygments/lexers/_php_builtins.py +4753 -0
  62. data/vendor/pygments-main/pygments/lexers/_postgres_builtins.py +678 -0
  63. data/vendor/pygments-main/pygments/lexers/_scilab_builtins.py +3094 -0
  64. data/vendor/pygments-main/pygments/lexers/_sourcemod_builtins.py +1161 -0
  65. data/vendor/pygments-main/pygments/lexers/_stan_builtins.py +558 -0
  66. data/vendor/pygments-main/pygments/lexers/_stata_builtins.py +421 -0
  67. data/vendor/pygments-main/pygments/lexers/_tsql_builtins.py +1004 -0
  68. data/vendor/pygments-main/pygments/lexers/_usd_builtins.py +113 -0
  69. data/vendor/pygments-main/pygments/lexers/_vbscript_builtins.py +280 -0
  70. data/vendor/pygments-main/pygments/lexers/_vim_builtins.py +1939 -0
  71. data/vendor/pygments-main/pygments/lexers/actionscript.py +245 -0
  72. data/vendor/pygments-main/pygments/lexers/agile.py +24 -0
  73. data/vendor/pygments-main/pygments/lexers/algebra.py +240 -0
  74. data/vendor/pygments-main/pygments/lexers/ambient.py +76 -0
  75. data/vendor/pygments-main/pygments/lexers/ampl.py +87 -0
  76. data/vendor/pygments-main/pygments/lexers/apl.py +101 -0
  77. data/vendor/pygments-main/pygments/lexers/archetype.py +318 -0
  78. data/vendor/pygments-main/pygments/lexers/arrow.py +117 -0
  79. data/vendor/pygments-main/pygments/lexers/asm.py +1005 -0
  80. data/vendor/pygments-main/pygments/lexers/automation.py +374 -0
  81. data/vendor/pygments-main/pygments/lexers/bare.py +104 -0
  82. data/vendor/pygments-main/pygments/lexers/basic.py +662 -0
  83. data/vendor/pygments-main/pygments/lexers/bibtex.py +160 -0
  84. data/vendor/pygments-main/pygments/lexers/boa.py +102 -0
  85. data/vendor/pygments-main/pygments/lexers/business.py +627 -0
  86. data/vendor/pygments-main/pygments/lexers/c_cpp.py +344 -0
  87. data/vendor/pygments-main/pygments/lexers/c_like.py +566 -0
  88. data/vendor/pygments-main/pygments/lexers/capnproto.py +78 -0
  89. data/vendor/pygments-main/pygments/lexers/chapel.py +112 -0
  90. data/vendor/pygments-main/pygments/lexers/clean.py +179 -0
  91. data/vendor/pygments-main/pygments/lexers/compiled.py +34 -0
  92. data/vendor/pygments-main/pygments/lexers/configs.py +984 -0
  93. data/vendor/pygments-main/pygments/lexers/console.py +114 -0
  94. data/vendor/pygments-main/pygments/lexers/crystal.py +392 -0
  95. data/vendor/pygments-main/pygments/lexers/csound.py +467 -0
  96. data/vendor/pygments-main/pygments/lexers/css.py +691 -0
  97. data/vendor/pygments-main/pygments/lexers/d.py +256 -0
  98. data/vendor/pygments-main/pygments/lexers/dalvik.py +125 -0
  99. data/vendor/pygments-main/pygments/lexers/data.py +698 -0
  100. data/vendor/pygments-main/pygments/lexers/devicetree.py +109 -0
  101. data/vendor/pygments-main/pygments/lexers/diff.py +165 -0
  102. data/vendor/pygments-main/pygments/lexers/dotnet.py +707 -0
  103. data/vendor/pygments-main/pygments/lexers/dsls.py +960 -0
  104. data/vendor/pygments-main/pygments/lexers/dylan.py +287 -0
  105. data/vendor/pygments-main/pygments/lexers/ecl.py +139 -0
  106. data/vendor/pygments-main/pygments/lexers/eiffel.py +65 -0
  107. data/vendor/pygments-main/pygments/lexers/elm.py +121 -0
  108. data/vendor/pygments-main/pygments/lexers/email.py +151 -0
  109. data/vendor/pygments-main/pygments/lexers/erlang.py +530 -0
  110. data/vendor/pygments-main/pygments/lexers/esoteric.py +304 -0
  111. data/vendor/pygments-main/pygments/lexers/ezhil.py +77 -0
  112. data/vendor/pygments-main/pygments/lexers/factor.py +344 -0
  113. data/vendor/pygments-main/pygments/lexers/fantom.py +250 -0
  114. data/vendor/pygments-main/pygments/lexers/felix.py +273 -0
  115. data/vendor/pygments-main/pygments/lexers/floscript.py +83 -0
  116. data/vendor/pygments-main/pygments/lexers/forth.py +178 -0
  117. data/vendor/pygments-main/pygments/lexers/fortran.py +206 -0
  118. data/vendor/pygments-main/pygments/lexers/foxpro.py +428 -0
  119. data/vendor/pygments-main/pygments/lexers/freefem.py +898 -0
  120. data/vendor/pygments-main/pygments/lexers/functional.py +21 -0
  121. data/vendor/pygments-main/pygments/lexers/gdscript.py +346 -0
  122. data/vendor/pygments-main/pygments/lexers/go.py +101 -0
  123. data/vendor/pygments-main/pygments/lexers/grammar_notation.py +270 -0
  124. data/vendor/pygments-main/pygments/lexers/graph.py +85 -0
  125. data/vendor/pygments-main/pygments/lexers/graphics.py +800 -0
  126. data/vendor/pygments-main/pygments/lexers/haskell.py +870 -0
  127. data/vendor/pygments-main/pygments/lexers/haxe.py +936 -0
  128. data/vendor/pygments-main/pygments/lexers/hdl.py +472 -0
  129. data/vendor/pygments-main/pygments/lexers/hexdump.py +103 -0
  130. data/vendor/pygments-main/pygments/lexers/html.py +614 -0
  131. data/vendor/pygments-main/pygments/lexers/idl.py +281 -0
  132. data/vendor/pygments-main/pygments/lexers/igor.py +420 -0
  133. data/vendor/pygments-main/pygments/lexers/inferno.py +96 -0
  134. data/vendor/pygments-main/pygments/lexers/installers.py +322 -0
  135. data/vendor/pygments-main/pygments/lexers/int_fiction.py +1368 -0
  136. data/vendor/pygments-main/pygments/lexers/iolang.py +63 -0
  137. data/vendor/pygments-main/pygments/lexers/j.py +146 -0
  138. data/vendor/pygments-main/pygments/lexers/javascript.py +1540 -0
  139. data/vendor/pygments-main/pygments/lexers/julia.py +331 -0
  140. data/vendor/pygments-main/pygments/lexers/jvm.py +1673 -0
  141. data/vendor/pygments-main/pygments/lexers/lisp.py +2699 -0
  142. data/vendor/pygments-main/pygments/lexers/make.py +206 -0
  143. data/vendor/pygments-main/pygments/lexers/markup.py +765 -0
  144. data/vendor/pygments-main/pygments/lexers/math.py +21 -0
  145. data/vendor/pygments-main/pygments/lexers/matlab.py +720 -0
  146. data/vendor/pygments-main/pygments/lexers/mime.py +226 -0
  147. data/vendor/pygments-main/pygments/lexers/ml.py +958 -0
  148. data/vendor/pygments-main/pygments/lexers/modeling.py +366 -0
  149. data/vendor/pygments-main/pygments/lexers/modula2.py +1580 -0
  150. data/vendor/pygments-main/pygments/lexers/monte.py +204 -0
  151. data/vendor/pygments-main/pygments/lexers/mosel.py +448 -0
  152. data/vendor/pygments-main/pygments/lexers/ncl.py +894 -0
  153. data/vendor/pygments-main/pygments/lexers/nimrod.py +159 -0
  154. data/vendor/pygments-main/pygments/lexers/nit.py +64 -0
  155. data/vendor/pygments-main/pygments/lexers/nix.py +136 -0
  156. data/vendor/pygments-main/pygments/lexers/oberon.py +121 -0
  157. data/vendor/pygments-main/pygments/lexers/objective.py +504 -0
  158. data/vendor/pygments-main/pygments/lexers/ooc.py +85 -0
  159. data/vendor/pygments-main/pygments/lexers/other.py +41 -0
  160. data/vendor/pygments-main/pygments/lexers/parasail.py +79 -0
  161. data/vendor/pygments-main/pygments/lexers/parsers.py +800 -0
  162. data/vendor/pygments-main/pygments/lexers/pascal.py +644 -0
  163. data/vendor/pygments-main/pygments/lexers/pawn.py +205 -0
  164. data/vendor/pygments-main/pygments/lexers/perl.py +732 -0
  165. data/vendor/pygments-main/pygments/lexers/php.py +321 -0
  166. data/vendor/pygments-main/pygments/lexers/pointless.py +71 -0
  167. data/vendor/pygments-main/pygments/lexers/pony.py +94 -0
  168. data/vendor/pygments-main/pygments/lexers/praat.py +302 -0
  169. data/vendor/pygments-main/pygments/lexers/prolog.py +306 -0
  170. data/vendor/pygments-main/pygments/lexers/promql.py +183 -0
  171. data/vendor/pygments-main/pygments/lexers/python.py +1151 -0
  172. data/vendor/pygments-main/pygments/lexers/qvt.py +152 -0
  173. data/vendor/pygments-main/pygments/lexers/r.py +191 -0
  174. data/vendor/pygments-main/pygments/lexers/rdf.py +463 -0
  175. data/vendor/pygments-main/pygments/lexers/rebol.py +431 -0
  176. data/vendor/pygments-main/pygments/lexers/resource.py +85 -0
  177. data/vendor/pygments-main/pygments/lexers/ride.py +139 -0
  178. data/vendor/pygments-main/pygments/lexers/rnc.py +67 -0
  179. data/vendor/pygments-main/pygments/lexers/roboconf.py +82 -0
  180. data/vendor/pygments-main/pygments/lexers/robotframework.py +552 -0
  181. data/vendor/pygments-main/pygments/lexers/ruby.py +517 -0
  182. data/vendor/pygments-main/pygments/lexers/rust.py +224 -0
  183. data/vendor/pygments-main/pygments/lexers/sas.py +228 -0
  184. data/vendor/pygments-main/pygments/lexers/scdoc.py +83 -0
  185. data/vendor/pygments-main/pygments/lexers/scripting.py +1284 -0
  186. data/vendor/pygments-main/pygments/lexers/sgf.py +61 -0
  187. data/vendor/pygments-main/pygments/lexers/shell.py +914 -0
  188. data/vendor/pygments-main/pygments/lexers/sieve.py +69 -0
  189. data/vendor/pygments-main/pygments/lexers/slash.py +185 -0
  190. data/vendor/pygments-main/pygments/lexers/smalltalk.py +195 -0
  191. data/vendor/pygments-main/pygments/lexers/smv.py +79 -0
  192. data/vendor/pygments-main/pygments/lexers/snobol.py +83 -0
  193. data/vendor/pygments-main/pygments/lexers/solidity.py +92 -0
  194. data/vendor/pygments-main/pygments/lexers/special.py +105 -0
  195. data/vendor/pygments-main/pygments/lexers/sql.py +837 -0
  196. data/vendor/pygments-main/pygments/lexers/stata.py +171 -0
  197. data/vendor/pygments-main/pygments/lexers/supercollider.py +95 -0
  198. data/vendor/pygments-main/pygments/lexers/tcl.py +145 -0
  199. data/vendor/pygments-main/pygments/lexers/templates.py +2264 -0
  200. data/vendor/pygments-main/pygments/lexers/teraterm.py +335 -0
  201. data/vendor/pygments-main/pygments/lexers/testing.py +207 -0
  202. data/vendor/pygments-main/pygments/lexers/text.py +26 -0
  203. data/vendor/pygments-main/pygments/lexers/textedit.py +169 -0
  204. data/vendor/pygments-main/pygments/lexers/textfmts.py +430 -0
  205. data/vendor/pygments-main/pygments/lexers/theorem.py +474 -0
  206. data/vendor/pygments-main/pygments/lexers/tnt.py +263 -0
  207. data/vendor/pygments-main/pygments/lexers/trafficscript.py +54 -0
  208. data/vendor/pygments-main/pygments/lexers/typoscript.py +219 -0
  209. data/vendor/pygments-main/pygments/lexers/unicon.py +412 -0
  210. data/vendor/pygments-main/pygments/lexers/urbi.py +146 -0
  211. data/vendor/pygments-main/pygments/lexers/usd.py +90 -0
  212. data/vendor/pygments-main/pygments/lexers/varnish.py +190 -0
  213. data/vendor/pygments-main/pygments/lexers/verification.py +114 -0
  214. data/vendor/pygments-main/pygments/lexers/web.py +24 -0
  215. data/vendor/pygments-main/pygments/lexers/webidl.py +299 -0
  216. data/vendor/pygments-main/pygments/lexers/webmisc.py +991 -0
  217. data/vendor/pygments-main/pygments/lexers/whiley.py +116 -0
  218. data/vendor/pygments-main/pygments/lexers/x10.py +69 -0
  219. data/vendor/pygments-main/pygments/lexers/xorg.py +37 -0
  220. data/vendor/pygments-main/pygments/lexers/yang.py +104 -0
  221. data/vendor/pygments-main/pygments/lexers/zig.py +124 -0
  222. data/vendor/pygments-main/pygments/modeline.py +1 -1
  223. data/vendor/pygments-main/pygments/plugin.py +4 -2
  224. data/vendor/pygments-main/pygments/regexopt.py +1 -1
  225. data/vendor/pygments-main/pygments/scanner.py +2 -2
  226. data/vendor/pygments-main/pygments/sphinxext.py +2 -4
  227. data/vendor/pygments-main/pygments/style.py +61 -24
  228. data/vendor/pygments-main/pygments/styles/__init__.py +10 -4
  229. data/vendor/pygments-main/pygments/styles/abap.py +1 -1
  230. data/vendor/pygments-main/pygments/styles/algol.py +1 -1
  231. data/vendor/pygments-main/pygments/styles/algol_nu.py +1 -1
  232. data/vendor/pygments-main/pygments/styles/arduino.py +2 -2
  233. data/vendor/pygments-main/pygments/styles/autumn.py +1 -1
  234. data/vendor/pygments-main/pygments/styles/borland.py +1 -1
  235. data/vendor/pygments-main/pygments/styles/bw.py +1 -1
  236. data/vendor/pygments-main/pygments/styles/colorful.py +1 -1
  237. data/vendor/pygments-main/pygments/styles/default.py +1 -1
  238. data/vendor/pygments-main/pygments/styles/emacs.py +1 -1
  239. data/vendor/pygments-main/pygments/styles/friendly.py +1 -1
  240. data/vendor/pygments-main/pygments/styles/fruity.py +1 -1
  241. data/vendor/pygments-main/pygments/styles/igor.py +1 -1
  242. data/vendor/pygments-main/pygments/styles/inkpot.py +67 -0
  243. data/vendor/pygments-main/pygments/styles/lovelace.py +1 -1
  244. data/vendor/pygments-main/pygments/styles/manni.py +1 -1
  245. data/vendor/pygments-main/pygments/styles/monokai.py +4 -3
  246. data/vendor/pygments-main/pygments/styles/murphy.py +1 -1
  247. data/vendor/pygments-main/pygments/styles/native.py +1 -1
  248. data/vendor/pygments-main/pygments/styles/paraiso_dark.py +1 -1
  249. data/vendor/pygments-main/pygments/styles/paraiso_light.py +1 -1
  250. data/vendor/pygments-main/pygments/styles/pastie.py +1 -1
  251. data/vendor/pygments-main/pygments/styles/perldoc.py +1 -1
  252. data/vendor/pygments-main/pygments/styles/rainbow_dash.py +1 -1
  253. data/vendor/pygments-main/pygments/styles/rrt.py +1 -1
  254. data/vendor/pygments-main/pygments/styles/sas.py +1 -1
  255. data/vendor/pygments-main/pygments/styles/solarized.py +134 -0
  256. data/vendor/pygments-main/pygments/styles/stata_dark.py +41 -0
  257. data/vendor/pygments-main/pygments/styles/{stata.py → stata_light.py} +14 -15
  258. data/vendor/pygments-main/pygments/styles/tango.py +1 -1
  259. data/vendor/pygments-main/pygments/styles/trac.py +1 -1
  260. data/vendor/pygments-main/pygments/styles/vim.py +1 -1
  261. data/vendor/pygments-main/pygments/styles/vs.py +1 -1
  262. data/vendor/pygments-main/pygments/styles/xcode.py +1 -1
  263. data/vendor/pygments-main/pygments/token.py +1 -1
  264. data/vendor/pygments-main/pygments/unistring.py +47 -108
  265. data/vendor/pygments-main/pygments/util.py +15 -92
  266. metadata +69 -136
  267. data/CHANGELOG.md +0 -111
  268. data/README.md +0 -121
  269. data/circle.yml +0 -20
  270. data/test/test_data.py +0 -514
  271. data/test/test_data_generated +0 -2582
  272. data/vendor/custom_lexers/github.py +0 -565
  273. data/vendor/pygments-main/CHANGES +0 -1186
  274. data/vendor/pygments-main/MANIFEST.in +0 -6
  275. data/vendor/pygments-main/Makefile +0 -65
  276. data/vendor/pygments-main/README.rst +0 -39
  277. data/vendor/pygments-main/REVISION +0 -1
  278. data/vendor/pygments-main/TODO +0 -12
  279. data/vendor/pygments-main/doc/Makefile +0 -153
  280. data/vendor/pygments-main/doc/_static/favicon.ico +0 -0
  281. data/vendor/pygments-main/doc/_static/logo_new.png +0 -0
  282. data/vendor/pygments-main/doc/_static/logo_only.png +0 -0
  283. data/vendor/pygments-main/doc/_templates/docssidebar.html +0 -3
  284. data/vendor/pygments-main/doc/_templates/indexsidebar.html +0 -25
  285. data/vendor/pygments-main/doc/_themes/pygments14/layout.html +0 -98
  286. data/vendor/pygments-main/doc/_themes/pygments14/static/bodybg.png +0 -0
  287. data/vendor/pygments-main/doc/_themes/pygments14/static/docbg.png +0 -0
  288. data/vendor/pygments-main/doc/_themes/pygments14/static/listitem.png +0 -0
  289. data/vendor/pygments-main/doc/_themes/pygments14/static/logo.png +0 -0
  290. data/vendor/pygments-main/doc/_themes/pygments14/static/pocoo.png +0 -0
  291. data/vendor/pygments-main/doc/_themes/pygments14/static/pygments14.css_t +0 -401
  292. data/vendor/pygments-main/doc/_themes/pygments14/theme.conf +0 -15
  293. data/vendor/pygments-main/doc/conf.py +0 -241
  294. data/vendor/pygments-main/doc/docs/api.rst +0 -354
  295. data/vendor/pygments-main/doc/docs/authors.rst +0 -4
  296. data/vendor/pygments-main/doc/docs/changelog.rst +0 -1
  297. data/vendor/pygments-main/doc/docs/cmdline.rst +0 -166
  298. data/vendor/pygments-main/doc/docs/filterdevelopment.rst +0 -71
  299. data/vendor/pygments-main/doc/docs/filters.rst +0 -41
  300. data/vendor/pygments-main/doc/docs/formatterdevelopment.rst +0 -169
  301. data/vendor/pygments-main/doc/docs/formatters.rst +0 -48
  302. data/vendor/pygments-main/doc/docs/index.rst +0 -66
  303. data/vendor/pygments-main/doc/docs/integrate.rst +0 -40
  304. data/vendor/pygments-main/doc/docs/java.rst +0 -70
  305. data/vendor/pygments-main/doc/docs/lexerdevelopment.rst +0 -728
  306. data/vendor/pygments-main/doc/docs/lexers.rst +0 -69
  307. data/vendor/pygments-main/doc/docs/moinmoin.rst +0 -39
  308. data/vendor/pygments-main/doc/docs/plugins.rst +0 -93
  309. data/vendor/pygments-main/doc/docs/quickstart.rst +0 -205
  310. data/vendor/pygments-main/doc/docs/rstdirective.rst +0 -22
  311. data/vendor/pygments-main/doc/docs/styles.rst +0 -201
  312. data/vendor/pygments-main/doc/docs/tokens.rst +0 -372
  313. data/vendor/pygments-main/doc/docs/unicode.rst +0 -58
  314. data/vendor/pygments-main/doc/download.rst +0 -41
  315. data/vendor/pygments-main/doc/faq.rst +0 -139
  316. data/vendor/pygments-main/doc/index.rst +0 -54
  317. data/vendor/pygments-main/doc/languages.rst +0 -154
  318. data/vendor/pygments-main/doc/make.bat +0 -190
  319. data/vendor/pygments-main/doc/pygmentize.1 +0 -94
  320. data/vendor/pygments-main/external/autopygmentize +0 -101
  321. data/vendor/pygments-main/external/lasso-builtins-generator-9.lasso +0 -162
  322. data/vendor/pygments-main/external/markdown-processor.py +0 -67
  323. data/vendor/pygments-main/external/moin-parser.py +0 -112
  324. data/vendor/pygments-main/external/pygments.bashcomp +0 -38
  325. data/vendor/pygments-main/external/rst-directive.py +0 -82
  326. data/vendor/pygments-main/pygmentize +0 -8
  327. data/vendor/pygments-main/requirements.txt +0 -5
  328. data/vendor/pygments-main/scripts/check_sources.py +0 -211
  329. data/vendor/pygments-main/scripts/debug_lexer.py +0 -246
  330. data/vendor/pygments-main/scripts/detect_missing_analyse_text.py +0 -33
  331. data/vendor/pygments-main/scripts/epydoc.css +0 -280
  332. data/vendor/pygments-main/scripts/get_vimkw.py +0 -74
  333. data/vendor/pygments-main/scripts/pylintrc +0 -301
  334. data/vendor/pygments-main/scripts/vim2pygments.py +0 -935
  335. data/vendor/pygments-main/setup.cfg +0 -10
  336. data/vendor/pygments-main/setup.py +0 -77
  337. data/vendor/pygments-main/tox.ini +0 -7
  338. data/vendor/simplejson/.gitignore +0 -10
  339. data/vendor/simplejson/.travis.yml +0 -5
  340. data/vendor/simplejson/CHANGES.txt +0 -291
  341. data/vendor/simplejson/LICENSE.txt +0 -19
  342. data/vendor/simplejson/MANIFEST.in +0 -5
  343. data/vendor/simplejson/README.rst +0 -19
  344. data/vendor/simplejson/conf.py +0 -179
  345. data/vendor/simplejson/index.rst +0 -628
  346. data/vendor/simplejson/scripts/make_docs.py +0 -18
  347. data/vendor/simplejson/setup.py +0 -104
  348. data/vendor/simplejson/simplejson/__init__.py +0 -510
  349. data/vendor/simplejson/simplejson/_speedups.c +0 -2745
  350. data/vendor/simplejson/simplejson/decoder.py +0 -425
  351. data/vendor/simplejson/simplejson/encoder.py +0 -567
  352. data/vendor/simplejson/simplejson/ordered_dict.py +0 -119
  353. data/vendor/simplejson/simplejson/scanner.py +0 -77
  354. data/vendor/simplejson/simplejson/tests/__init__.py +0 -67
  355. data/vendor/simplejson/simplejson/tests/test_bigint_as_string.py +0 -55
  356. data/vendor/simplejson/simplejson/tests/test_check_circular.py +0 -30
  357. data/vendor/simplejson/simplejson/tests/test_decimal.py +0 -66
  358. data/vendor/simplejson/simplejson/tests/test_decode.py +0 -83
  359. data/vendor/simplejson/simplejson/tests/test_default.py +0 -9
  360. data/vendor/simplejson/simplejson/tests/test_dump.py +0 -67
  361. data/vendor/simplejson/simplejson/tests/test_encode_basestring_ascii.py +0 -46
  362. data/vendor/simplejson/simplejson/tests/test_encode_for_html.py +0 -32
  363. data/vendor/simplejson/simplejson/tests/test_errors.py +0 -34
  364. data/vendor/simplejson/simplejson/tests/test_fail.py +0 -91
  365. data/vendor/simplejson/simplejson/tests/test_float.py +0 -19
  366. data/vendor/simplejson/simplejson/tests/test_indent.py +0 -86
  367. data/vendor/simplejson/simplejson/tests/test_item_sort_key.py +0 -20
  368. data/vendor/simplejson/simplejson/tests/test_namedtuple.py +0 -121
  369. data/vendor/simplejson/simplejson/tests/test_pass1.py +0 -76
  370. data/vendor/simplejson/simplejson/tests/test_pass2.py +0 -14
  371. data/vendor/simplejson/simplejson/tests/test_pass3.py +0 -20
  372. data/vendor/simplejson/simplejson/tests/test_recursion.py +0 -67
  373. data/vendor/simplejson/simplejson/tests/test_scanstring.py +0 -117
  374. data/vendor/simplejson/simplejson/tests/test_separators.py +0 -42
  375. data/vendor/simplejson/simplejson/tests/test_speedups.py +0 -20
  376. data/vendor/simplejson/simplejson/tests/test_tuple.py +0 -49
  377. data/vendor/simplejson/simplejson/tests/test_unicode.py +0 -109
  378. data/vendor/simplejson/simplejson/tool.py +0 -39
@@ -0,0 +1,936 @@
1
+ # -*- coding: utf-8 -*-
2
+ """
3
+ pygments.lexers.haxe
4
+ ~~~~~~~~~~~~~~~~~~~~
5
+
6
+ Lexers for Haxe and related stuff.
7
+
8
+ :copyright: Copyright 2006-2020 by the Pygments team, see AUTHORS.
9
+ :license: BSD, see LICENSE for details.
10
+ """
11
+
12
+ import re
13
+
14
+ from pygments.lexer import ExtendedRegexLexer, RegexLexer, include, bygroups, \
15
+ default
16
+ from pygments.token import Text, Comment, Operator, Keyword, Name, String, \
17
+ Number, Punctuation, Generic, Whitespace
18
+
19
+ __all__ = ['HaxeLexer', 'HxmlLexer']
20
+
21
+
22
+ class HaxeLexer(ExtendedRegexLexer):
23
+ """
24
+ For Haxe source code (http://haxe.org/).
25
+
26
+ .. versionadded:: 1.3
27
+ """
28
+
29
+ name = 'Haxe'
30
+ aliases = ['hx', 'haxe', 'hxsl']
31
+ filenames = ['*.hx', '*.hxsl']
32
+ mimetypes = ['text/haxe', 'text/x-haxe', 'text/x-hx']
33
+
34
+ # keywords extracted from lexer.mll in the haxe compiler source
35
+ keyword = (r'(?:function|class|static|var|if|else|while|do|for|'
36
+ r'break|return|continue|extends|implements|import|'
37
+ r'switch|case|default|public|private|try|untyped|'
38
+ r'catch|new|this|throw|extern|enum|in|interface|'
39
+ r'cast|override|dynamic|typedef|package|'
40
+ r'inline|using|null|true|false|abstract)\b')
41
+
42
+ # idtype in lexer.mll
43
+ typeid = r'_*[A-Z]\w*'
44
+
45
+ # combined ident and dollar and idtype
46
+ ident = r'(?:_*[a-z]\w*|_+[0-9]\w*|' + typeid + r'|_+|\$\w+)'
47
+
48
+ binop = (r'(?:%=|&=|\|=|\^=|\+=|\-=|\*=|/=|<<=|>\s*>\s*=|>\s*>\s*>\s*=|==|'
49
+ r'!=|<=|>\s*=|&&|\|\||<<|>>>|>\s*>|\.\.\.|<|>|%|&|\||\^|\+|\*|'
50
+ r'/|\-|=>|=)')
51
+
52
+ # ident except keywords
53
+ ident_no_keyword = r'(?!' + keyword + ')' + ident
54
+
55
+ flags = re.DOTALL | re.MULTILINE
56
+
57
+ preproc_stack = []
58
+
59
+ def preproc_callback(self, match, ctx):
60
+ proc = match.group(2)
61
+
62
+ if proc == 'if':
63
+ # store the current stack
64
+ self.preproc_stack.append(ctx.stack[:])
65
+ elif proc in ['else', 'elseif']:
66
+ # restore the stack back to right before #if
67
+ if self.preproc_stack:
68
+ ctx.stack = self.preproc_stack[-1][:]
69
+ elif proc == 'end':
70
+ # remove the saved stack of previous #if
71
+ if self.preproc_stack:
72
+ self.preproc_stack.pop()
73
+
74
+ # #if and #elseif should follow by an expr
75
+ if proc in ['if', 'elseif']:
76
+ ctx.stack.append('preproc-expr')
77
+
78
+ # #error can be optionally follow by the error msg
79
+ if proc in ['error']:
80
+ ctx.stack.append('preproc-error')
81
+
82
+ yield match.start(), Comment.Preproc, '#' + proc
83
+ ctx.pos = match.end()
84
+
85
+ tokens = {
86
+ 'root': [
87
+ include('spaces'),
88
+ include('meta'),
89
+ (r'(?:package)\b', Keyword.Namespace, ('semicolon', 'package')),
90
+ (r'(?:import)\b', Keyword.Namespace, ('semicolon', 'import')),
91
+ (r'(?:using)\b', Keyword.Namespace, ('semicolon', 'using')),
92
+ (r'(?:extern|private)\b', Keyword.Declaration),
93
+ (r'(?:abstract)\b', Keyword.Declaration, 'abstract'),
94
+ (r'(?:class|interface)\b', Keyword.Declaration, 'class'),
95
+ (r'(?:enum)\b', Keyword.Declaration, 'enum'),
96
+ (r'(?:typedef)\b', Keyword.Declaration, 'typedef'),
97
+
98
+ # top-level expression
99
+ # although it is not supported in haxe, but it is common to write
100
+ # expression in web pages the positive lookahead here is to prevent
101
+ # an infinite loop at the EOF
102
+ (r'(?=.)', Text, 'expr-statement'),
103
+ ],
104
+
105
+ # space/tab/comment/preproc
106
+ 'spaces': [
107
+ (r'\s+', Text),
108
+ (r'//[^\n\r]*', Comment.Single),
109
+ (r'/\*.*?\*/', Comment.Multiline),
110
+ (r'(#)(if|elseif|else|end|error)\b', preproc_callback),
111
+ ],
112
+
113
+ 'string-single-interpol': [
114
+ (r'\$\{', String.Interpol, ('string-interpol-close', 'expr')),
115
+ (r'\$\$', String.Escape),
116
+ (r'\$(?=' + ident + ')', String.Interpol, 'ident'),
117
+ include('string-single'),
118
+ ],
119
+
120
+ 'string-single': [
121
+ (r"'", String.Single, '#pop'),
122
+ (r'\\.', String.Escape),
123
+ (r'.', String.Single),
124
+ ],
125
+
126
+ 'string-double': [
127
+ (r'"', String.Double, '#pop'),
128
+ (r'\\.', String.Escape),
129
+ (r'.', String.Double),
130
+ ],
131
+
132
+ 'string-interpol-close': [
133
+ (r'\$'+ident, String.Interpol),
134
+ (r'\}', String.Interpol, '#pop'),
135
+ ],
136
+
137
+ 'package': [
138
+ include('spaces'),
139
+ (ident, Name.Namespace),
140
+ (r'\.', Punctuation, 'import-ident'),
141
+ default('#pop'),
142
+ ],
143
+
144
+ 'import': [
145
+ include('spaces'),
146
+ (ident, Name.Namespace),
147
+ (r'\*', Keyword), # wildcard import
148
+ (r'\.', Punctuation, 'import-ident'),
149
+ (r'in', Keyword.Namespace, 'ident'),
150
+ default('#pop'),
151
+ ],
152
+
153
+ 'import-ident': [
154
+ include('spaces'),
155
+ (r'\*', Keyword, '#pop'), # wildcard import
156
+ (ident, Name.Namespace, '#pop'),
157
+ ],
158
+
159
+ 'using': [
160
+ include('spaces'),
161
+ (ident, Name.Namespace),
162
+ (r'\.', Punctuation, 'import-ident'),
163
+ default('#pop'),
164
+ ],
165
+
166
+ 'preproc-error': [
167
+ (r'\s+', Comment.Preproc),
168
+ (r"'", String.Single, ('#pop', 'string-single')),
169
+ (r'"', String.Double, ('#pop', 'string-double')),
170
+ default('#pop'),
171
+ ],
172
+
173
+ 'preproc-expr': [
174
+ (r'\s+', Comment.Preproc),
175
+ (r'\!', Comment.Preproc),
176
+ (r'\(', Comment.Preproc, ('#pop', 'preproc-parenthesis')),
177
+
178
+ (ident, Comment.Preproc, '#pop'),
179
+
180
+ # Float
181
+ (r'\.[0-9]+', Number.Float),
182
+ (r'[0-9]+[eE][+\-]?[0-9]+', Number.Float),
183
+ (r'[0-9]+\.[0-9]*[eE][+\-]?[0-9]+', Number.Float),
184
+ (r'[0-9]+\.[0-9]+', Number.Float),
185
+ (r'[0-9]+\.(?!' + ident + r'|\.\.)', Number.Float),
186
+
187
+ # Int
188
+ (r'0x[0-9a-fA-F]+', Number.Hex),
189
+ (r'[0-9]+', Number.Integer),
190
+
191
+ # String
192
+ (r"'", String.Single, ('#pop', 'string-single')),
193
+ (r'"', String.Double, ('#pop', 'string-double')),
194
+ ],
195
+
196
+ 'preproc-parenthesis': [
197
+ (r'\s+', Comment.Preproc),
198
+ (r'\)', Comment.Preproc, '#pop'),
199
+ default('preproc-expr-in-parenthesis'),
200
+ ],
201
+
202
+ 'preproc-expr-chain': [
203
+ (r'\s+', Comment.Preproc),
204
+ (binop, Comment.Preproc, ('#pop', 'preproc-expr-in-parenthesis')),
205
+ default('#pop'),
206
+ ],
207
+
208
+ # same as 'preproc-expr' but able to chain 'preproc-expr-chain'
209
+ 'preproc-expr-in-parenthesis': [
210
+ (r'\s+', Comment.Preproc),
211
+ (r'\!', Comment.Preproc),
212
+ (r'\(', Comment.Preproc,
213
+ ('#pop', 'preproc-expr-chain', 'preproc-parenthesis')),
214
+
215
+ (ident, Comment.Preproc, ('#pop', 'preproc-expr-chain')),
216
+
217
+ # Float
218
+ (r'\.[0-9]+', Number.Float, ('#pop', 'preproc-expr-chain')),
219
+ (r'[0-9]+[eE][+\-]?[0-9]+', Number.Float, ('#pop', 'preproc-expr-chain')),
220
+ (r'[0-9]+\.[0-9]*[eE][+\-]?[0-9]+', Number.Float, ('#pop', 'preproc-expr-chain')),
221
+ (r'[0-9]+\.[0-9]+', Number.Float, ('#pop', 'preproc-expr-chain')),
222
+ (r'[0-9]+\.(?!' + ident + r'|\.\.)', Number.Float, ('#pop', 'preproc-expr-chain')),
223
+
224
+ # Int
225
+ (r'0x[0-9a-fA-F]+', Number.Hex, ('#pop', 'preproc-expr-chain')),
226
+ (r'[0-9]+', Number.Integer, ('#pop', 'preproc-expr-chain')),
227
+
228
+ # String
229
+ (r"'", String.Single,
230
+ ('#pop', 'preproc-expr-chain', 'string-single')),
231
+ (r'"', String.Double,
232
+ ('#pop', 'preproc-expr-chain', 'string-double')),
233
+ ],
234
+
235
+ 'abstract': [
236
+ include('spaces'),
237
+ default(('#pop', 'abstract-body', 'abstract-relation',
238
+ 'abstract-opaque', 'type-param-constraint', 'type-name')),
239
+ ],
240
+
241
+ 'abstract-body': [
242
+ include('spaces'),
243
+ (r'\{', Punctuation, ('#pop', 'class-body')),
244
+ ],
245
+
246
+ 'abstract-opaque': [
247
+ include('spaces'),
248
+ (r'\(', Punctuation, ('#pop', 'parenthesis-close', 'type')),
249
+ default('#pop'),
250
+ ],
251
+
252
+ 'abstract-relation': [
253
+ include('spaces'),
254
+ (r'(?:to|from)', Keyword.Declaration, 'type'),
255
+ (r',', Punctuation),
256
+ default('#pop'),
257
+ ],
258
+
259
+ 'meta': [
260
+ include('spaces'),
261
+ (r'@', Name.Decorator, ('meta-body', 'meta-ident', 'meta-colon')),
262
+ ],
263
+
264
+ # optional colon
265
+ 'meta-colon': [
266
+ include('spaces'),
267
+ (r':', Name.Decorator, '#pop'),
268
+ default('#pop'),
269
+ ],
270
+
271
+ # same as 'ident' but set token as Name.Decorator instead of Name
272
+ 'meta-ident': [
273
+ include('spaces'),
274
+ (ident, Name.Decorator, '#pop'),
275
+ ],
276
+
277
+ 'meta-body': [
278
+ include('spaces'),
279
+ (r'\(', Name.Decorator, ('#pop', 'meta-call')),
280
+ default('#pop'),
281
+ ],
282
+
283
+ 'meta-call': [
284
+ include('spaces'),
285
+ (r'\)', Name.Decorator, '#pop'),
286
+ default(('#pop', 'meta-call-sep', 'expr')),
287
+ ],
288
+
289
+ 'meta-call-sep': [
290
+ include('spaces'),
291
+ (r'\)', Name.Decorator, '#pop'),
292
+ (r',', Punctuation, ('#pop', 'meta-call')),
293
+ ],
294
+
295
+ 'typedef': [
296
+ include('spaces'),
297
+ default(('#pop', 'typedef-body', 'type-param-constraint',
298
+ 'type-name')),
299
+ ],
300
+
301
+ 'typedef-body': [
302
+ include('spaces'),
303
+ (r'=', Operator, ('#pop', 'optional-semicolon', 'type')),
304
+ ],
305
+
306
+ 'enum': [
307
+ include('spaces'),
308
+ default(('#pop', 'enum-body', 'bracket-open',
309
+ 'type-param-constraint', 'type-name')),
310
+ ],
311
+
312
+ 'enum-body': [
313
+ include('spaces'),
314
+ include('meta'),
315
+ (r'\}', Punctuation, '#pop'),
316
+ (ident_no_keyword, Name, ('enum-member', 'type-param-constraint')),
317
+ ],
318
+
319
+ 'enum-member': [
320
+ include('spaces'),
321
+ (r'\(', Punctuation,
322
+ ('#pop', 'semicolon', 'flag', 'function-param')),
323
+ default(('#pop', 'semicolon', 'flag')),
324
+ ],
325
+
326
+ 'class': [
327
+ include('spaces'),
328
+ default(('#pop', 'class-body', 'bracket-open', 'extends',
329
+ 'type-param-constraint', 'type-name')),
330
+ ],
331
+
332
+ 'extends': [
333
+ include('spaces'),
334
+ (r'(?:extends|implements)\b', Keyword.Declaration, 'type'),
335
+ (r',', Punctuation), # the comma is made optional here, since haxe2
336
+ # requires the comma but haxe3 does not allow it
337
+ default('#pop'),
338
+ ],
339
+
340
+ 'bracket-open': [
341
+ include('spaces'),
342
+ (r'\{', Punctuation, '#pop'),
343
+ ],
344
+
345
+ 'bracket-close': [
346
+ include('spaces'),
347
+ (r'\}', Punctuation, '#pop'),
348
+ ],
349
+
350
+ 'class-body': [
351
+ include('spaces'),
352
+ include('meta'),
353
+ (r'\}', Punctuation, '#pop'),
354
+ (r'(?:static|public|private|override|dynamic|inline|macro)\b',
355
+ Keyword.Declaration),
356
+ default('class-member'),
357
+ ],
358
+
359
+ 'class-member': [
360
+ include('spaces'),
361
+ (r'(var)\b', Keyword.Declaration,
362
+ ('#pop', 'optional-semicolon', 'var')),
363
+ (r'(function)\b', Keyword.Declaration,
364
+ ('#pop', 'optional-semicolon', 'class-method')),
365
+ ],
366
+
367
+ # local function, anonymous or not
368
+ 'function-local': [
369
+ include('spaces'),
370
+ (ident_no_keyword, Name.Function,
371
+ ('#pop', 'optional-expr', 'flag', 'function-param',
372
+ 'parenthesis-open', 'type-param-constraint')),
373
+ default(('#pop', 'optional-expr', 'flag', 'function-param',
374
+ 'parenthesis-open', 'type-param-constraint')),
375
+ ],
376
+
377
+ 'optional-expr': [
378
+ include('spaces'),
379
+ include('expr'),
380
+ default('#pop'),
381
+ ],
382
+
383
+ 'class-method': [
384
+ include('spaces'),
385
+ (ident, Name.Function, ('#pop', 'optional-expr', 'flag',
386
+ 'function-param', 'parenthesis-open',
387
+ 'type-param-constraint')),
388
+ ],
389
+
390
+ # function arguments
391
+ 'function-param': [
392
+ include('spaces'),
393
+ (r'\)', Punctuation, '#pop'),
394
+ (r'\?', Punctuation),
395
+ (ident_no_keyword, Name,
396
+ ('#pop', 'function-param-sep', 'assign', 'flag')),
397
+ ],
398
+
399
+ 'function-param-sep': [
400
+ include('spaces'),
401
+ (r'\)', Punctuation, '#pop'),
402
+ (r',', Punctuation, ('#pop', 'function-param')),
403
+ ],
404
+
405
+ 'prop-get-set': [
406
+ include('spaces'),
407
+ (r'\(', Punctuation, ('#pop', 'parenthesis-close',
408
+ 'prop-get-set-opt', 'comma', 'prop-get-set-opt')),
409
+ default('#pop'),
410
+ ],
411
+
412
+ 'prop-get-set-opt': [
413
+ include('spaces'),
414
+ (r'(?:default|null|never|dynamic|get|set)\b', Keyword, '#pop'),
415
+ (ident_no_keyword, Text, '#pop'), # custom getter/setter
416
+ ],
417
+
418
+ 'expr-statement': [
419
+ include('spaces'),
420
+ # makes semicolon optional here, just to avoid checking the last
421
+ # one is bracket or not.
422
+ default(('#pop', 'optional-semicolon', 'expr')),
423
+ ],
424
+
425
+ 'expr': [
426
+ include('spaces'),
427
+ (r'@', Name.Decorator, ('#pop', 'optional-expr', 'meta-body',
428
+ 'meta-ident', 'meta-colon')),
429
+ (r'(?:\+\+|\-\-|~(?!/)|!|\-)', Operator),
430
+ (r'\(', Punctuation, ('#pop', 'expr-chain', 'parenthesis')),
431
+ (r'(?:static|public|private|override|dynamic|inline)\b',
432
+ Keyword.Declaration),
433
+ (r'(?:function)\b', Keyword.Declaration, ('#pop', 'expr-chain',
434
+ 'function-local')),
435
+ (r'\{', Punctuation, ('#pop', 'expr-chain', 'bracket')),
436
+ (r'(?:true|false|null)\b', Keyword.Constant, ('#pop', 'expr-chain')),
437
+ (r'(?:this)\b', Keyword, ('#pop', 'expr-chain')),
438
+ (r'(?:cast)\b', Keyword, ('#pop', 'expr-chain', 'cast')),
439
+ (r'(?:try)\b', Keyword, ('#pop', 'catch', 'expr')),
440
+ (r'(?:var)\b', Keyword.Declaration, ('#pop', 'var')),
441
+ (r'(?:new)\b', Keyword, ('#pop', 'expr-chain', 'new')),
442
+ (r'(?:switch)\b', Keyword, ('#pop', 'switch')),
443
+ (r'(?:if)\b', Keyword, ('#pop', 'if')),
444
+ (r'(?:do)\b', Keyword, ('#pop', 'do')),
445
+ (r'(?:while)\b', Keyword, ('#pop', 'while')),
446
+ (r'(?:for)\b', Keyword, ('#pop', 'for')),
447
+ (r'(?:untyped|throw)\b', Keyword),
448
+ (r'(?:return)\b', Keyword, ('#pop', 'optional-expr')),
449
+ (r'(?:macro)\b', Keyword, ('#pop', 'macro')),
450
+ (r'(?:continue|break)\b', Keyword, '#pop'),
451
+ (r'(?:\$\s*[a-z]\b|\$(?!'+ident+'))', Name, ('#pop', 'dollar')),
452
+ (ident_no_keyword, Name, ('#pop', 'expr-chain')),
453
+
454
+ # Float
455
+ (r'\.[0-9]+', Number.Float, ('#pop', 'expr-chain')),
456
+ (r'[0-9]+[eE][+\-]?[0-9]+', Number.Float, ('#pop', 'expr-chain')),
457
+ (r'[0-9]+\.[0-9]*[eE][+\-]?[0-9]+', Number.Float, ('#pop', 'expr-chain')),
458
+ (r'[0-9]+\.[0-9]+', Number.Float, ('#pop', 'expr-chain')),
459
+ (r'[0-9]+\.(?!' + ident + r'|\.\.)', Number.Float, ('#pop', 'expr-chain')),
460
+
461
+ # Int
462
+ (r'0x[0-9a-fA-F]+', Number.Hex, ('#pop', 'expr-chain')),
463
+ (r'[0-9]+', Number.Integer, ('#pop', 'expr-chain')),
464
+
465
+ # String
466
+ (r"'", String.Single, ('#pop', 'expr-chain', 'string-single-interpol')),
467
+ (r'"', String.Double, ('#pop', 'expr-chain', 'string-double')),
468
+
469
+ # EReg
470
+ (r'~/(\\\\|\\/|[^/\n])*/[gimsu]*', String.Regex, ('#pop', 'expr-chain')),
471
+
472
+ # Array
473
+ (r'\[', Punctuation, ('#pop', 'expr-chain', 'array-decl')),
474
+ ],
475
+
476
+ 'expr-chain': [
477
+ include('spaces'),
478
+ (r'(?:\+\+|\-\-)', Operator),
479
+ (binop, Operator, ('#pop', 'expr')),
480
+ (r'(?:in)\b', Keyword, ('#pop', 'expr')),
481
+ (r'\?', Operator, ('#pop', 'expr', 'ternary', 'expr')),
482
+ (r'(\.)(' + ident_no_keyword + ')', bygroups(Punctuation, Name)),
483
+ (r'\[', Punctuation, 'array-access'),
484
+ (r'\(', Punctuation, 'call'),
485
+ default('#pop'),
486
+ ],
487
+
488
+ # macro reification
489
+ 'macro': [
490
+ include('spaces'),
491
+ include('meta'),
492
+ (r':', Punctuation, ('#pop', 'type')),
493
+
494
+ (r'(?:extern|private)\b', Keyword.Declaration),
495
+ (r'(?:abstract)\b', Keyword.Declaration, ('#pop', 'optional-semicolon', 'abstract')),
496
+ (r'(?:class|interface)\b', Keyword.Declaration, ('#pop', 'optional-semicolon', 'macro-class')),
497
+ (r'(?:enum)\b', Keyword.Declaration, ('#pop', 'optional-semicolon', 'enum')),
498
+ (r'(?:typedef)\b', Keyword.Declaration, ('#pop', 'optional-semicolon', 'typedef')),
499
+
500
+ default(('#pop', 'expr')),
501
+ ],
502
+
503
+ 'macro-class': [
504
+ (r'\{', Punctuation, ('#pop', 'class-body')),
505
+ include('class')
506
+ ],
507
+
508
+ # cast can be written as "cast expr" or "cast(expr, type)"
509
+ 'cast': [
510
+ include('spaces'),
511
+ (r'\(', Punctuation, ('#pop', 'parenthesis-close',
512
+ 'cast-type', 'expr')),
513
+ default(('#pop', 'expr')),
514
+ ],
515
+
516
+ # optionally give a type as the 2nd argument of cast()
517
+ 'cast-type': [
518
+ include('spaces'),
519
+ (r',', Punctuation, ('#pop', 'type')),
520
+ default('#pop'),
521
+ ],
522
+
523
+ 'catch': [
524
+ include('spaces'),
525
+ (r'(?:catch)\b', Keyword, ('expr', 'function-param',
526
+ 'parenthesis-open')),
527
+ default('#pop'),
528
+ ],
529
+
530
+ # do-while loop
531
+ 'do': [
532
+ include('spaces'),
533
+ default(('#pop', 'do-while', 'expr')),
534
+ ],
535
+
536
+ # the while after do
537
+ 'do-while': [
538
+ include('spaces'),
539
+ (r'(?:while)\b', Keyword, ('#pop', 'parenthesis',
540
+ 'parenthesis-open')),
541
+ ],
542
+
543
+ 'while': [
544
+ include('spaces'),
545
+ (r'\(', Punctuation, ('#pop', 'expr', 'parenthesis')),
546
+ ],
547
+
548
+ 'for': [
549
+ include('spaces'),
550
+ (r'\(', Punctuation, ('#pop', 'expr', 'parenthesis')),
551
+ ],
552
+
553
+ 'if': [
554
+ include('spaces'),
555
+ (r'\(', Punctuation, ('#pop', 'else', 'optional-semicolon', 'expr',
556
+ 'parenthesis')),
557
+ ],
558
+
559
+ 'else': [
560
+ include('spaces'),
561
+ (r'(?:else)\b', Keyword, ('#pop', 'expr')),
562
+ default('#pop'),
563
+ ],
564
+
565
+ 'switch': [
566
+ include('spaces'),
567
+ default(('#pop', 'switch-body', 'bracket-open', 'expr')),
568
+ ],
569
+
570
+ 'switch-body': [
571
+ include('spaces'),
572
+ (r'(?:case|default)\b', Keyword, ('case-block', 'case')),
573
+ (r'\}', Punctuation, '#pop'),
574
+ ],
575
+
576
+ 'case': [
577
+ include('spaces'),
578
+ (r':', Punctuation, '#pop'),
579
+ default(('#pop', 'case-sep', 'case-guard', 'expr')),
580
+ ],
581
+
582
+ 'case-sep': [
583
+ include('spaces'),
584
+ (r':', Punctuation, '#pop'),
585
+ (r',', Punctuation, ('#pop', 'case')),
586
+ ],
587
+
588
+ 'case-guard': [
589
+ include('spaces'),
590
+ (r'(?:if)\b', Keyword, ('#pop', 'parenthesis', 'parenthesis-open')),
591
+ default('#pop'),
592
+ ],
593
+
594
+ # optional multiple expr under a case
595
+ 'case-block': [
596
+ include('spaces'),
597
+ (r'(?!(?:case|default)\b|\})', Keyword, 'expr-statement'),
598
+ default('#pop'),
599
+ ],
600
+
601
+ 'new': [
602
+ include('spaces'),
603
+ default(('#pop', 'call', 'parenthesis-open', 'type')),
604
+ ],
605
+
606
+ 'array-decl': [
607
+ include('spaces'),
608
+ (r'\]', Punctuation, '#pop'),
609
+ default(('#pop', 'array-decl-sep', 'expr')),
610
+ ],
611
+
612
+ 'array-decl-sep': [
613
+ include('spaces'),
614
+ (r'\]', Punctuation, '#pop'),
615
+ (r',', Punctuation, ('#pop', 'array-decl')),
616
+ ],
617
+
618
+ 'array-access': [
619
+ include('spaces'),
620
+ default(('#pop', 'array-access-close', 'expr')),
621
+ ],
622
+
623
+ 'array-access-close': [
624
+ include('spaces'),
625
+ (r'\]', Punctuation, '#pop'),
626
+ ],
627
+
628
+ 'comma': [
629
+ include('spaces'),
630
+ (r',', Punctuation, '#pop'),
631
+ ],
632
+
633
+ 'colon': [
634
+ include('spaces'),
635
+ (r':', Punctuation, '#pop'),
636
+ ],
637
+
638
+ 'semicolon': [
639
+ include('spaces'),
640
+ (r';', Punctuation, '#pop'),
641
+ ],
642
+
643
+ 'optional-semicolon': [
644
+ include('spaces'),
645
+ (r';', Punctuation, '#pop'),
646
+ default('#pop'),
647
+ ],
648
+
649
+ # identity that CAN be a Haxe keyword
650
+ 'ident': [
651
+ include('spaces'),
652
+ (ident, Name, '#pop'),
653
+ ],
654
+
655
+ 'dollar': [
656
+ include('spaces'),
657
+ (r'\{', Punctuation, ('#pop', 'expr-chain', 'bracket-close', 'expr')),
658
+ default(('#pop', 'expr-chain')),
659
+ ],
660
+
661
+ 'type-name': [
662
+ include('spaces'),
663
+ (typeid, Name, '#pop'),
664
+ ],
665
+
666
+ 'type-full-name': [
667
+ include('spaces'),
668
+ (r'\.', Punctuation, 'ident'),
669
+ default('#pop'),
670
+ ],
671
+
672
+ 'type': [
673
+ include('spaces'),
674
+ (r'\?', Punctuation),
675
+ (ident, Name, ('#pop', 'type-check', 'type-full-name')),
676
+ (r'\{', Punctuation, ('#pop', 'type-check', 'type-struct')),
677
+ (r'\(', Punctuation, ('#pop', 'type-check', 'type-parenthesis')),
678
+ ],
679
+
680
+ 'type-parenthesis': [
681
+ include('spaces'),
682
+ default(('#pop', 'parenthesis-close', 'type')),
683
+ ],
684
+
685
+ 'type-check': [
686
+ include('spaces'),
687
+ (r'->', Punctuation, ('#pop', 'type')),
688
+ (r'<(?!=)', Punctuation, 'type-param'),
689
+ default('#pop'),
690
+ ],
691
+
692
+ 'type-struct': [
693
+ include('spaces'),
694
+ (r'\}', Punctuation, '#pop'),
695
+ (r'\?', Punctuation),
696
+ (r'>', Punctuation, ('comma', 'type')),
697
+ (ident_no_keyword, Name, ('#pop', 'type-struct-sep', 'type', 'colon')),
698
+ include('class-body'),
699
+ ],
700
+
701
+ 'type-struct-sep': [
702
+ include('spaces'),
703
+ (r'\}', Punctuation, '#pop'),
704
+ (r',', Punctuation, ('#pop', 'type-struct')),
705
+ ],
706
+
707
+ # type-param can be a normal type or a constant literal...
708
+ 'type-param-type': [
709
+ # Float
710
+ (r'\.[0-9]+', Number.Float, '#pop'),
711
+ (r'[0-9]+[eE][+\-]?[0-9]+', Number.Float, '#pop'),
712
+ (r'[0-9]+\.[0-9]*[eE][+\-]?[0-9]+', Number.Float, '#pop'),
713
+ (r'[0-9]+\.[0-9]+', Number.Float, '#pop'),
714
+ (r'[0-9]+\.(?!' + ident + r'|\.\.)', Number.Float, '#pop'),
715
+
716
+ # Int
717
+ (r'0x[0-9a-fA-F]+', Number.Hex, '#pop'),
718
+ (r'[0-9]+', Number.Integer, '#pop'),
719
+
720
+ # String
721
+ (r"'", String.Single, ('#pop', 'string-single')),
722
+ (r'"', String.Double, ('#pop', 'string-double')),
723
+
724
+ # EReg
725
+ (r'~/(\\\\|\\/|[^/\n])*/[gim]*', String.Regex, '#pop'),
726
+
727
+ # Array
728
+ (r'\[', Operator, ('#pop', 'array-decl')),
729
+
730
+ include('type'),
731
+ ],
732
+
733
+ # type-param part of a type
734
+ # ie. the <A,B> path in Map<A,B>
735
+ 'type-param': [
736
+ include('spaces'),
737
+ default(('#pop', 'type-param-sep', 'type-param-type')),
738
+ ],
739
+
740
+ 'type-param-sep': [
741
+ include('spaces'),
742
+ (r'>', Punctuation, '#pop'),
743
+ (r',', Punctuation, ('#pop', 'type-param')),
744
+ ],
745
+
746
+ # optional type-param that may include constraint
747
+ # ie. <T:Constraint, T2:(ConstraintA,ConstraintB)>
748
+ 'type-param-constraint': [
749
+ include('spaces'),
750
+ (r'<(?!=)', Punctuation, ('#pop', 'type-param-constraint-sep',
751
+ 'type-param-constraint-flag', 'type-name')),
752
+ default('#pop'),
753
+ ],
754
+
755
+ 'type-param-constraint-sep': [
756
+ include('spaces'),
757
+ (r'>', Punctuation, '#pop'),
758
+ (r',', Punctuation, ('#pop', 'type-param-constraint-sep',
759
+ 'type-param-constraint-flag', 'type-name')),
760
+ ],
761
+
762
+ # the optional constraint inside type-param
763
+ 'type-param-constraint-flag': [
764
+ include('spaces'),
765
+ (r':', Punctuation, ('#pop', 'type-param-constraint-flag-type')),
766
+ default('#pop'),
767
+ ],
768
+
769
+ 'type-param-constraint-flag-type': [
770
+ include('spaces'),
771
+ (r'\(', Punctuation, ('#pop', 'type-param-constraint-flag-type-sep',
772
+ 'type')),
773
+ default(('#pop', 'type')),
774
+ ],
775
+
776
+ 'type-param-constraint-flag-type-sep': [
777
+ include('spaces'),
778
+ (r'\)', Punctuation, '#pop'),
779
+ (r',', Punctuation, 'type'),
780
+ ],
781
+
782
+ # a parenthesis expr that contain exactly one expr
783
+ 'parenthesis': [
784
+ include('spaces'),
785
+ default(('#pop', 'parenthesis-close', 'flag', 'expr')),
786
+ ],
787
+
788
+ 'parenthesis-open': [
789
+ include('spaces'),
790
+ (r'\(', Punctuation, '#pop'),
791
+ ],
792
+
793
+ 'parenthesis-close': [
794
+ include('spaces'),
795
+ (r'\)', Punctuation, '#pop'),
796
+ ],
797
+
798
+ 'var': [
799
+ include('spaces'),
800
+ (ident_no_keyword, Text, ('#pop', 'var-sep', 'assign', 'flag', 'prop-get-set')),
801
+ ],
802
+
803
+ # optional more var decl.
804
+ 'var-sep': [
805
+ include('spaces'),
806
+ (r',', Punctuation, ('#pop', 'var')),
807
+ default('#pop'),
808
+ ],
809
+
810
+ # optional assignment
811
+ 'assign': [
812
+ include('spaces'),
813
+ (r'=', Operator, ('#pop', 'expr')),
814
+ default('#pop'),
815
+ ],
816
+
817
+ # optional type flag
818
+ 'flag': [
819
+ include('spaces'),
820
+ (r':', Punctuation, ('#pop', 'type')),
821
+ default('#pop'),
822
+ ],
823
+
824
+ # colon as part of a ternary operator (?:)
825
+ 'ternary': [
826
+ include('spaces'),
827
+ (r':', Operator, '#pop'),
828
+ ],
829
+
830
+ # function call
831
+ 'call': [
832
+ include('spaces'),
833
+ (r'\)', Punctuation, '#pop'),
834
+ default(('#pop', 'call-sep', 'expr')),
835
+ ],
836
+
837
+ # after a call param
838
+ 'call-sep': [
839
+ include('spaces'),
840
+ (r'\)', Punctuation, '#pop'),
841
+ (r',', Punctuation, ('#pop', 'call')),
842
+ ],
843
+
844
+ # bracket can be block or object
845
+ 'bracket': [
846
+ include('spaces'),
847
+ (r'(?!(?:\$\s*[a-z]\b|\$(?!'+ident+')))' + ident_no_keyword, Name,
848
+ ('#pop', 'bracket-check')),
849
+ (r"'", String.Single, ('#pop', 'bracket-check', 'string-single')),
850
+ (r'"', String.Double, ('#pop', 'bracket-check', 'string-double')),
851
+ default(('#pop', 'block')),
852
+ ],
853
+
854
+ 'bracket-check': [
855
+ include('spaces'),
856
+ (r':', Punctuation, ('#pop', 'object-sep', 'expr')), # is object
857
+ default(('#pop', 'block', 'optional-semicolon', 'expr-chain')), # is block
858
+ ],
859
+
860
+ # code block
861
+ 'block': [
862
+ include('spaces'),
863
+ (r'\}', Punctuation, '#pop'),
864
+ default('expr-statement'),
865
+ ],
866
+
867
+ # object in key-value pairs
868
+ 'object': [
869
+ include('spaces'),
870
+ (r'\}', Punctuation, '#pop'),
871
+ default(('#pop', 'object-sep', 'expr', 'colon', 'ident-or-string'))
872
+ ],
873
+
874
+ # a key of an object
875
+ 'ident-or-string': [
876
+ include('spaces'),
877
+ (ident_no_keyword, Name, '#pop'),
878
+ (r"'", String.Single, ('#pop', 'string-single')),
879
+ (r'"', String.Double, ('#pop', 'string-double')),
880
+ ],
881
+
882
+ # after a key-value pair in object
883
+ 'object-sep': [
884
+ include('spaces'),
885
+ (r'\}', Punctuation, '#pop'),
886
+ (r',', Punctuation, ('#pop', 'object')),
887
+ ],
888
+
889
+
890
+
891
+ }
892
+
893
+ def analyse_text(text):
894
+ if re.match(r'\w+\s*:\s*\w', text):
895
+ return 0.3
896
+
897
+
898
+ class HxmlLexer(RegexLexer):
899
+ """
900
+ Lexer for `haXe build <http://haxe.org/doc/compiler>`_ files.
901
+
902
+ .. versionadded:: 1.6
903
+ """
904
+ name = 'Hxml'
905
+ aliases = ['haxeml', 'hxml']
906
+ filenames = ['*.hxml']
907
+
908
+ tokens = {
909
+ 'root': [
910
+ # Seperator
911
+ (r'(--)(next)', bygroups(Punctuation, Generic.Heading)),
912
+ # Compiler switches with one dash
913
+ (r'(-)(prompt|debug|v)', bygroups(Punctuation, Keyword.Keyword)),
914
+ # Compilerswitches with two dashes
915
+ (r'(--)(neko-source|flash-strict|flash-use-stage|no-opt|no-traces|'
916
+ r'no-inline|times|no-output)', bygroups(Punctuation, Keyword)),
917
+ # Targets and other options that take an argument
918
+ (r'(-)(cpp|js|neko|x|as3|swf9?|swf-lib|php|xml|main|lib|D|resource|'
919
+ r'cp|cmd)( +)(.+)',
920
+ bygroups(Punctuation, Keyword, Whitespace, String)),
921
+ # Options that take only numerical arguments
922
+ (r'(-)(swf-version)( +)(\d+)',
923
+ bygroups(Punctuation, Keyword, Number.Integer)),
924
+ # An Option that defines the size, the fps and the background
925
+ # color of an flash movie
926
+ (r'(-)(swf-header)( +)(\d+)(:)(\d+)(:)(\d+)(:)([A-Fa-f0-9]{6})',
927
+ bygroups(Punctuation, Keyword, Whitespace, Number.Integer,
928
+ Punctuation, Number.Integer, Punctuation, Number.Integer,
929
+ Punctuation, Number.Hex)),
930
+ # options with two dashes that takes arguments
931
+ (r'(--)(js-namespace|php-front|php-lib|remap|gen-hx-classes)( +)'
932
+ r'(.+)', bygroups(Punctuation, Keyword, Whitespace, String)),
933
+ # Single line comment, multiline ones are not allowed.
934
+ (r'#.*', Comment.Single)
935
+ ]
936
+ }