mdbe 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (688) hide show
  1. checksums.yaml +15 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +53 -0
  4. data/app.rb +182 -0
  5. data/bin/mdbe +5 -0
  6. data/config.ru +2 -0
  7. data/environment.rb +8 -0
  8. data/lib/mdbe.rb +39 -0
  9. data/lib/mdbe/action_controller_debug_patch.rb +12 -0
  10. data/lib/mdbe/code_evaluation.rb +46 -0
  11. data/lib/mdbe/database_views.rb +24 -0
  12. data/lib/mdbe/database_views/abstract_dictionary.rb +69 -0
  13. data/lib/mdbe/database_views/abstract_exception.rb +25 -0
  14. data/lib/mdbe/database_views/array.rb +28 -0
  15. data/lib/mdbe/database_views/boolean.rb +12 -0
  16. data/lib/mdbe/database_views/class.rb +46 -0
  17. data/lib/mdbe/database_views/exception.rb +3 -0
  18. data/lib/mdbe/database_views/execblock.rb +5 -0
  19. data/lib/mdbe/database_views/fixnum.rb +5 -0
  20. data/lib/mdbe/database_views/float.rb +5 -0
  21. data/lib/mdbe/database_views/globals.rb +2 -0
  22. data/lib/mdbe/database_views/gsnmethod.rb +29 -0
  23. data/lib/mdbe/database_views/hash.rb +5 -0
  24. data/lib/mdbe/database_views/maglev_record.rb +42 -0
  25. data/lib/mdbe/database_views/module.rb +103 -0
  26. data/lib/mdbe/database_views/nilclass.rb +5 -0
  27. data/lib/mdbe/database_views/object.rb +80 -0
  28. data/lib/mdbe/database_views/proc.rb +3 -0
  29. data/lib/mdbe/database_views/repository.rb +3 -0
  30. data/lib/mdbe/database_views/ruby_workspace.rb +5 -0
  31. data/lib/mdbe/database_views/smalltalk_classes.rb +34 -0
  32. data/lib/mdbe/database_views/smalltalk_classes.st +60 -0
  33. data/lib/mdbe/database_views/string.rb +31 -0
  34. data/lib/mdbe/database_views/symbol.rb +32 -0
  35. data/lib/mdbe/database_views/system.rb +61 -0
  36. data/lib/mdbe/database_views/thread.rb +101 -0
  37. data/lib/mdbe/debug_server.rb +22 -0
  38. data/lib/mdbe/halt.rb +42 -0
  39. data/lib/mdbe/ruby_workspace.rb +29 -0
  40. data/lib/mdbe/version.rb +3 -0
  41. data/lib/tasks/maglev-database-explorer_tasks.rake +4 -0
  42. data/public/LICENSE +35 -0
  43. data/public/amber/CHANGELOG +65 -0
  44. data/public/amber/LICENSE +22 -0
  45. data/public/amber/Makefile +53 -0
  46. data/public/amber/README.md +30 -0
  47. data/public/amber/bin/amber +3 -0
  48. data/public/amber/bin/amberc +352 -0
  49. data/public/amber/bin/nodecompile.js +33 -0
  50. data/public/amber/bin/server +3 -0
  51. data/public/amber/bin/server.bat +3 -0
  52. data/public/amber/css/amber-normalize.css +468 -0
  53. data/public/amber/css/amber-normalize.less +501 -0
  54. data/public/amber/css/amber.css +539 -0
  55. data/public/amber/css/documentation.css +84 -0
  56. data/public/amber/css/profstef.css +75 -0
  57. data/public/amber/css/style.css +313 -0
  58. data/public/amber/documentation.html +37 -0
  59. data/public/amber/examples/Makefile +23 -0
  60. data/public/amber/examples/README +4 -0
  61. data/public/amber/examples/android/helloamber/AndroidManifest.xml +19 -0
  62. data/public/amber/examples/android/helloamber/HelloAmber.st +13 -0
  63. data/public/amber/examples/android/helloamber/Makefile +56 -0
  64. data/public/amber/examples/android/helloamber/README.md +80 -0
  65. data/public/amber/examples/android/helloamber/ant.properties +17 -0
  66. data/public/amber/examples/android/helloamber/assets/index.html +15 -0
  67. data/public/amber/examples/android/helloamber/assets/jquery-1.7.2.min.js +4 -0
  68. data/public/amber/examples/android/helloamber/build.xml +83 -0
  69. data/public/amber/examples/android/helloamber/local.properties +10 -0
  70. data/public/amber/examples/android/helloamber/proguard-project.txt +20 -0
  71. data/public/amber/examples/android/helloamber/project.properties +14 -0
  72. data/public/amber/examples/android/helloamber/res/layout/main.xml +6 -0
  73. data/public/amber/examples/android/helloamber/res/values/strings.xml +4 -0
  74. data/public/amber/examples/android/helloamber/src/org/amberlang/android/helloamber/HelloAmber.java +59 -0
  75. data/public/amber/examples/myproject/index.html +16 -0
  76. data/public/amber/examples/nodejs/README +9 -0
  77. data/public/amber/examples/nodejs/benchfib/Benchfib.st +124 -0
  78. data/public/amber/examples/nodejs/benchfib/Makefile +8 -0
  79. data/public/amber/examples/nodejs/benchfib/benchfib +1 -0
  80. data/public/amber/examples/nodejs/hello/Hello.st +9 -0
  81. data/public/amber/examples/nodejs/hello/Makefile +8 -0
  82. data/public/amber/examples/nodejs/hello/README +13 -0
  83. data/public/amber/examples/nodejs/hello/hello +1 -0
  84. data/public/amber/examples/nodejs/meta/Makefile +8 -0
  85. data/public/amber/examples/nodejs/meta/MyScript.st +27 -0
  86. data/public/amber/examples/nodejs/meta/meta +1 -0
  87. data/public/amber/examples/nodejs/pystone/Makefile +8 -0
  88. data/public/amber/examples/nodejs/pystone/Pystone.st +306 -0
  89. data/public/amber/examples/nodejs/pystone/pystone +1 -0
  90. data/public/amber/examples/nodejs/trivialserver/Makefile +8 -0
  91. data/public/amber/examples/nodejs/trivialserver/TrivialServer.st +51 -0
  92. data/public/amber/examples/nodejs/trivialserver/trivial +1 -0
  93. data/public/amber/examples/presentation/esug2011/images/asterix.png +0 -0
  94. data/public/amber/examples/presentation/esug2011/images/background_box.png +0 -0
  95. data/public/amber/examples/presentation/esug2011/images/background_header.png +0 -0
  96. data/public/amber/examples/presentation/esug2011/images/balloon.jpg +0 -0
  97. data/public/amber/examples/presentation/esug2011/images/balloon_header.png +0 -0
  98. data/public/amber/examples/presentation/esug2011/images/devices.jpg +0 -0
  99. data/public/amber/examples/presentation/esug2011/images/enyo.png +0 -0
  100. data/public/amber/examples/presentation/esug2011/images/ide_star_wars.png +0 -0
  101. data/public/amber/examples/presentation/esug2011/images/nodejs.png +0 -0
  102. data/public/amber/examples/presentation/esug2011/images/terminal.png +0 -0
  103. data/public/amber/examples/presentation/esug2011/images/webos.png +0 -0
  104. data/public/amber/examples/presentation/fosdem2012/images/amber.png +0 -0
  105. data/public/amber/examples/presentation/fosdem2012/images/ambrhino.jpg +0 -0
  106. data/public/amber/examples/presentation/fosdem2012/images/nodejs.png +0 -0
  107. data/public/amber/examples/presentation/fosdem2012/images/pharo.png +0 -0
  108. data/public/amber/examples/presentation/fosdem2012/images/php.gif +0 -0
  109. data/public/amber/examples/presentation/fosdem2012/images/rails.png +0 -0
  110. data/public/amber/examples/presentation/fosdem2012/lib/booklet/images/arrow-next.png +0 -0
  111. data/public/amber/examples/presentation/fosdem2012/lib/booklet/images/arrow-prev.png +0 -0
  112. data/public/amber/examples/presentation/fosdem2012/lib/booklet/images/closedhand.cur +0 -0
  113. data/public/amber/examples/presentation/fosdem2012/lib/booklet/images/openhand.cur +0 -0
  114. data/public/amber/examples/presentation/fosdem2012/lib/booklet/images/shadow-top-back.png +0 -0
  115. data/public/amber/examples/presentation/fosdem2012/lib/booklet/images/shadow-top-forward.png +0 -0
  116. data/public/amber/examples/presentation/fosdem2012/lib/booklet/images/shadow.png +0 -0
  117. data/public/amber/examples/presentation/fosdem2012/lib/booklet/jquery.booklet.1.2.0.css +100 -0
  118. data/public/amber/examples/presentation/fosdem2012/lib/booklet/jquery.booklet.1.2.0.js +1232 -0
  119. data/public/amber/examples/presentation/fosdem2012/lib/booklet/jquery.booklet.1.2.0.min.js +13 -0
  120. data/public/amber/examples/presentation/fosdem2012/lib/booklet/jquery.easing.1.3.js +38 -0
  121. data/public/amber/examples/presentation/index.html +17 -0
  122. data/public/amber/examples/presentation/js/Presentation.deploy.js +1922 -0
  123. data/public/amber/examples/presentation/js/Presentation.js +2712 -0
  124. data/public/amber/examples/presentation/st/Presentation.st +1996 -0
  125. data/public/amber/examples/trysmalltalk/index.html +18 -0
  126. data/public/amber/examples/trysmalltalk/js/TrySmalltalk.deploy.js +837 -0
  127. data/public/amber/examples/trysmalltalk/js/TrySmalltalk.js +1206 -0
  128. data/public/amber/examples/trysmalltalk/st/TrySmalltalk.st +964 -0
  129. data/public/amber/examples/twitterwall/css/twitterwall.css +19 -0
  130. data/public/amber/examples/twitterwall/index.html +35 -0
  131. data/public/amber/examples/twitterwall/js/TwitterWall.deploy.js +116 -0
  132. data/public/amber/examples/twitterwall/js/TwitterWall.js +146 -0
  133. data/public/amber/examples/twitterwall/st/TwitterWall.st +91 -0
  134. data/public/amber/examples/webos/README +11 -0
  135. data/public/amber/examples/webos/eris/DuckQwaq.wav +0 -0
  136. data/public/amber/examples/webos/eris/EnyoAmber.st +36 -0
  137. data/public/amber/examples/webos/eris/Eris.css +0 -0
  138. data/public/amber/examples/webos/eris/Eris.st +86 -0
  139. data/public/amber/examples/webos/eris/Makefile +37 -0
  140. data/public/amber/examples/webos/eris/README +3 -0
  141. data/public/amber/examples/webos/eris/appinfo.json +10 -0
  142. data/public/amber/examples/webos/eris/index.html +12 -0
  143. data/public/amber/examples/webos/helloamber/EnyoAmber.st +36 -0
  144. data/public/amber/examples/webos/helloamber/HelloAmber.st +86 -0
  145. data/public/amber/examples/webos/helloamber/Makefile +38 -0
  146. data/public/amber/examples/webos/helloamber/README +5 -0
  147. data/public/amber/examples/webos/helloamber/appinfo.json +10 -0
  148. data/public/amber/examples/webos/helloamber/index.html +12 -0
  149. data/public/amber/favicon.ico +0 -0
  150. data/public/amber/images/amber.png +0 -0
  151. data/public/amber/images/amber.svg +706 -0
  152. data/public/amber/images/amber_small.png +0 -0
  153. data/public/amber/images/off.amber.png +0 -0
  154. data/public/amber/images/off.png +0 -0
  155. data/public/amber/images/offHover.amber.png +0 -0
  156. data/public/amber/images/offHover.png +0 -0
  157. data/public/amber/images/presentation.png +0 -0
  158. data/public/amber/images/profstef.png +0 -0
  159. data/public/amber/images/sprite.amber.png +0 -0
  160. data/public/amber/images/sprite.png +0 -0
  161. data/public/amber/images/tinylogo.amber.png +0 -0
  162. data/public/amber/images/tinylogo.png +0 -0
  163. data/public/amber/images/twitterwall.png +0 -0
  164. data/public/amber/index.html +55 -0
  165. data/public/amber/js/Additional-Examples.deploy.js +15 -0
  166. data/public/amber/js/Additional-Examples.js +21 -0
  167. data/public/amber/js/Benchfib.deploy.js +132 -0
  168. data/public/amber/js/Benchfib.js +167 -0
  169. data/public/amber/js/Canvas.deploy.js +2446 -0
  170. data/public/amber/js/Canvas.js +3547 -0
  171. data/public/amber/js/Compiler-Tests.deploy.js +97 -0
  172. data/public/amber/js/Compiler-Tests.js +137 -0
  173. data/public/amber/js/Compiler.deploy.js +1877 -0
  174. data/public/amber/js/Compiler.js +2622 -0
  175. data/public/amber/js/Documentation.deploy.js +961 -0
  176. data/public/amber/js/Documentation.js +1376 -0
  177. data/public/amber/js/Examples.deploy.js +53 -0
  178. data/public/amber/js/Examples.js +73 -0
  179. data/public/amber/js/IDE.deploy.js +3557 -0
  180. data/public/amber/js/IDE.js +5002 -0
  181. data/public/amber/js/Kernel-Announcements.deploy.js +107 -0
  182. data/public/amber/js/Kernel-Announcements.js +152 -0
  183. data/public/amber/js/Kernel-Classes.deploy.js +774 -0
  184. data/public/amber/js/Kernel-Classes.js +1095 -0
  185. data/public/amber/js/Kernel-Collections.deploy.js +3121 -0
  186. data/public/amber/js/Kernel-Collections.js +4427 -0
  187. data/public/amber/js/Kernel-Exceptions.deploy.js +244 -0
  188. data/public/amber/js/Kernel-Exceptions.js +349 -0
  189. data/public/amber/js/Kernel-Methods.deploy.js +573 -0
  190. data/public/amber/js/Kernel-Methods.js +807 -0
  191. data/public/amber/js/Kernel-Objects.deploy.js +2877 -0
  192. data/public/amber/js/Kernel-Objects.js +4107 -0
  193. data/public/amber/js/Kernel-Tests.deploy.js +1513 -0
  194. data/public/amber/js/Kernel-Tests.js +2053 -0
  195. data/public/amber/js/Kernel-Transcript.deploy.js +142 -0
  196. data/public/amber/js/Kernel-Transcript.js +202 -0
  197. data/public/amber/js/Maglev-Core.deploy.js +2996 -0
  198. data/public/amber/js/Maglev-Core.js +4246 -0
  199. data/public/amber/js/Maglev-Database-Explorer.deploy.js +4476 -0
  200. data/public/amber/js/Maglev-Database-Explorer.js +6232 -0
  201. data/public/amber/js/Maglev-Vendor.deploy.js +350 -0
  202. data/public/amber/js/Maglev-Vendor.js +465 -0
  203. data/public/amber/js/README.md +5 -0
  204. data/public/amber/js/SUnit.deploy.js +351 -0
  205. data/public/amber/js/SUnit.js +501 -0
  206. data/public/amber/js/amber.js +273 -0
  207. data/public/amber/js/boot.js +602 -0
  208. data/public/amber/js/compat.js +22 -0
  209. data/public/amber/js/init.js +9 -0
  210. data/public/amber/js/lib/CodeMirror/LICENSE +19 -0
  211. data/public/amber/js/lib/CodeMirror/active-line.js +39 -0
  212. data/public/amber/js/lib/CodeMirror/amber.css +21 -0
  213. data/public/amber/js/lib/CodeMirror/codemirror.css +67 -0
  214. data/public/amber/js/lib/CodeMirror/codemirror.js +2144 -0
  215. data/public/amber/js/lib/CodeMirror/smalltalk.js +134 -0
  216. data/public/amber/js/lib/jQuery/jquery-1.4.4.min.js +167 -0
  217. data/public/amber/js/lib/jQuery/jquery-1.6.4.min.js +4 -0
  218. data/public/amber/js/lib/jQuery/jquery-ui-1.8.16.custom.min.js +791 -0
  219. data/public/amber/js/lib/jQuery/jquery.textarea.js +267 -0
  220. data/public/amber/js/lib/peg-0.6.2.min.js +2 -0
  221. data/public/amber/js/lib/showdown.js +419 -0
  222. data/public/amber/js/parser.js +4222 -0
  223. data/public/amber/js/parser.pegjs +223 -0
  224. data/public/amber/learn.html +40 -0
  225. data/public/amber/repl/Makefile +8 -0
  226. data/public/amber/repl/REPL.js +124 -0
  227. data/public/amber/repl/REPL.st +56 -0
  228. data/public/amber/repl/amber.js +18085 -0
  229. data/public/amber/server/FileServer.st +576 -0
  230. data/public/amber/server/Makefile +8 -0
  231. data/public/amber/server/server.js +13049 -0
  232. data/public/amber/st/Benchfib.js +297 -0
  233. data/public/amber/st/Benchfib.st +124 -0
  234. data/public/amber/st/Canvas.st +968 -0
  235. data/public/amber/st/Compiler-Tests.st +471 -0
  236. data/public/amber/st/Compiler.st +1445 -0
  237. data/public/amber/st/Documentation.st +758 -0
  238. data/public/amber/st/Examples.js +100 -0
  239. data/public/amber/st/Examples.st +38 -0
  240. data/public/amber/st/IDE.st +2404 -0
  241. data/public/amber/st/Kernel-Announcements.st +61 -0
  242. data/public/amber/st/Kernel-Classes.st +462 -0
  243. data/public/amber/st/Kernel-Collections.st +1611 -0
  244. data/public/amber/st/Kernel-Exceptions.st +124 -0
  245. data/public/amber/st/Kernel-Methods.st +291 -0
  246. data/public/amber/st/Kernel-Objects.st +1587 -0
  247. data/public/amber/st/Kernel-Tests.st +953 -0
  248. data/public/amber/st/Kernel-Transcript.st +70 -0
  249. data/public/amber/st/Maglev-Core.st +1694 -0
  250. data/public/amber/st/Maglev-Database-Explorer.st +3148 -0
  251. data/public/amber/st/Maglev-Vendor.st +151 -0
  252. data/public/amber/st/Makefile +104 -0
  253. data/public/amber/st/README.md +4 -0
  254. data/public/amber/st/SUnit.st +172 -0
  255. data/public/css/bootstrap-combined.no-icons.min.css +731 -0
  256. data/public/css/bootstrap.css +6811 -0
  257. data/public/css/images/animated-overlay.gif +0 -0
  258. data/public/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  259. data/public/css/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  260. data/public/css/images/ui-bg_flat_10_000000_40x100.png +0 -0
  261. data/public/css/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  262. data/public/css/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  263. data/public/css/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  264. data/public/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  265. data/public/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  266. data/public/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  267. data/public/css/images/ui-icons_222222_256x240.png +0 -0
  268. data/public/css/images/ui-icons_228ef1_256x240.png +0 -0
  269. data/public/css/images/ui-icons_ef8c08_256x240.png +0 -0
  270. data/public/css/images/ui-icons_ffd27a_256x240.png +0 -0
  271. data/public/css/images/ui-icons_ffffff_256x240.png +0 -0
  272. data/public/css/jquery-ui.min.css +5 -0
  273. data/public/css/smalltalk_code.css +42 -0
  274. data/public/css/style.css +210 -0
  275. data/public/images/bg_tile.png +0 -0
  276. data/public/images/maglev-logo.gif +0 -0
  277. data/public/images/mchammer.gif +0 -0
  278. data/public/images/rails_tiny.png +0 -0
  279. data/public/images/ruby.png +0 -0
  280. data/public/images/ruby_smalltalk_bridge.png +0 -0
  281. data/public/images/smalltalk.png +0 -0
  282. data/public/img/glyphicons-halflings.png +0 -0
  283. data/public/index.html +118 -0
  284. data/public/libs/bootstrap.min.js +7 -0
  285. data/public/libs/codemirror/CONTRIBUTING.md +72 -0
  286. data/public/libs/codemirror/LICENSE +23 -0
  287. data/public/libs/codemirror/README.md +11 -0
  288. data/public/libs/codemirror/addon/dialog/dialog.css +32 -0
  289. data/public/libs/codemirror/addon/dialog/dialog.js +80 -0
  290. data/public/libs/codemirror/addon/display/placeholder.js +54 -0
  291. data/public/libs/codemirror/addon/edit/closebrackets.js +54 -0
  292. data/public/libs/codemirror/addon/edit/closetag.js +86 -0
  293. data/public/libs/codemirror/addon/edit/continuecomment.js +44 -0
  294. data/public/libs/codemirror/addon/edit/continuelist.js +25 -0
  295. data/public/libs/codemirror/addon/edit/matchbrackets.js +82 -0
  296. data/public/libs/codemirror/addon/fold/brace-fold.js +31 -0
  297. data/public/libs/codemirror/addon/fold/foldcode.js +32 -0
  298. data/public/libs/codemirror/addon/fold/indent-fold.js +11 -0
  299. data/public/libs/codemirror/addon/fold/xml-fold.js +64 -0
  300. data/public/libs/codemirror/addon/hint/html-hint.js +582 -0
  301. data/public/libs/codemirror/addon/hint/javascript-hint.js +142 -0
  302. data/public/libs/codemirror/addon/hint/pig-hint.js +117 -0
  303. data/public/libs/codemirror/addon/hint/python-hint.js +93 -0
  304. data/public/libs/codemirror/addon/hint/show-hint.css +38 -0
  305. data/public/libs/codemirror/addon/hint/show-hint.js +180 -0
  306. data/public/libs/codemirror/addon/hint/xml-hint.js +118 -0
  307. data/public/libs/codemirror/addon/lint/javascript-lint.js +127 -0
  308. data/public/libs/codemirror/addon/lint/json-lint.js +14 -0
  309. data/public/libs/codemirror/addon/lint/lint.css +96 -0
  310. data/public/libs/codemirror/addon/lint/lint.js +197 -0
  311. data/public/libs/codemirror/addon/mode/loadmode.js +51 -0
  312. data/public/libs/codemirror/addon/mode/multiplex.js +95 -0
  313. data/public/libs/codemirror/addon/mode/overlay.js +59 -0
  314. data/public/libs/codemirror/addon/runmode/colorize.js +29 -0
  315. data/public/libs/codemirror/addon/runmode/runmode-standalone.js +130 -0
  316. data/public/libs/codemirror/addon/runmode/runmode.js +52 -0
  317. data/public/libs/codemirror/addon/runmode/runmode.node.js +89 -0
  318. data/public/libs/codemirror/addon/search/match-highlighter.js +60 -0
  319. data/public/libs/codemirror/addon/search/search.js +131 -0
  320. data/public/libs/codemirror/addon/search/searchcursor.js +133 -0
  321. data/public/libs/codemirror/addon/selection/active-line.js +39 -0
  322. data/public/libs/codemirror/addon/selection/mark-selection.js +34 -0
  323. data/public/libs/codemirror/bin/compress +91 -0
  324. data/public/libs/codemirror/bin/lint +11 -0
  325. data/public/libs/codemirror/demo/activeline.html +70 -0
  326. data/public/libs/codemirror/demo/bidi.html +61 -0
  327. data/public/libs/codemirror/demo/btree.html +87 -0
  328. data/public/libs/codemirror/demo/buffers.html +98 -0
  329. data/public/libs/codemirror/demo/changemode.html +50 -0
  330. data/public/libs/codemirror/demo/closebrackets.html +63 -0
  331. data/public/libs/codemirror/demo/closetag.html +37 -0
  332. data/public/libs/codemirror/demo/complete.html +70 -0
  333. data/public/libs/codemirror/demo/emacs.html +60 -0
  334. data/public/libs/codemirror/demo/folding.html +69 -0
  335. data/public/libs/codemirror/demo/fullscreen.html +147 -0
  336. data/public/libs/codemirror/demo/html5complete.html +92 -0
  337. data/public/libs/codemirror/demo/indentwrap.html +49 -0
  338. data/public/libs/codemirror/demo/lint.html +90 -0
  339. data/public/libs/codemirror/demo/loadmode.html +40 -0
  340. data/public/libs/codemirror/demo/marker.html +59 -0
  341. data/public/libs/codemirror/demo/markselection.html +36 -0
  342. data/public/libs/codemirror/demo/matchhighlighter.html +38 -0
  343. data/public/libs/codemirror/demo/multiplex.html +60 -0
  344. data/public/libs/codemirror/demo/mustache.html +59 -0
  345. data/public/libs/codemirror/demo/placeholder.html +36 -0
  346. data/public/libs/codemirror/demo/preview.html +76 -0
  347. data/public/libs/codemirror/demo/resize.html +49 -0
  348. data/public/libs/codemirror/demo/runmode.html +50 -0
  349. data/public/libs/codemirror/demo/search.html +85 -0
  350. data/public/libs/codemirror/demo/spanaffectswrapping_shim.html +73 -0
  351. data/public/libs/codemirror/demo/theme.html +89 -0
  352. data/public/libs/codemirror/demo/variableheight.html +52 -0
  353. data/public/libs/codemirror/demo/vim.html +65 -0
  354. data/public/libs/codemirror/demo/visibletabs.html +53 -0
  355. data/public/libs/codemirror/demo/widget.html +74 -0
  356. data/public/libs/codemirror/demo/xmlcomplete.html +81 -0
  357. data/public/libs/codemirror/index.html +487 -0
  358. data/public/libs/codemirror/keymap/emacs.js +30 -0
  359. data/public/libs/codemirror/keymap/vim.js +3044 -0
  360. data/public/libs/codemirror/lib/codemirror.css +253 -0
  361. data/public/libs/codemirror/lib/codemirror.js +5585 -0
  362. data/public/libs/codemirror/mode/apl/apl.js +160 -0
  363. data/public/libs/codemirror/mode/apl/index.html +61 -0
  364. data/public/libs/codemirror/mode/asterisk/asterisk.js +183 -0
  365. data/public/libs/codemirror/mode/asterisk/index.html +142 -0
  366. data/public/libs/codemirror/mode/clike/clike.js +302 -0
  367. data/public/libs/codemirror/mode/clike/index.html +103 -0
  368. data/public/libs/codemirror/mode/clike/scala.html +767 -0
  369. data/public/libs/codemirror/mode/clojure/clojure.js +222 -0
  370. data/public/libs/codemirror/mode/clojure/index.html +76 -0
  371. data/public/libs/codemirror/mode/coffeescript/LICENSE +22 -0
  372. data/public/libs/codemirror/mode/coffeescript/coffeescript.js +346 -0
  373. data/public/libs/codemirror/mode/coffeescript/index.html +728 -0
  374. data/public/libs/codemirror/mode/commonlisp/commonlisp.js +101 -0
  375. data/public/libs/codemirror/mode/commonlisp/index.html +165 -0
  376. data/public/libs/codemirror/mode/css/css.js +567 -0
  377. data/public/libs/codemirror/mode/css/index.html +58 -0
  378. data/public/libs/codemirror/mode/css/scss.html +145 -0
  379. data/public/libs/codemirror/mode/css/scss_test.js +80 -0
  380. data/public/libs/codemirror/mode/css/test.js +113 -0
  381. data/public/libs/codemirror/mode/d/d.js +205 -0
  382. data/public/libs/codemirror/mode/d/index.html +262 -0
  383. data/public/libs/codemirror/mode/diff/diff.js +32 -0
  384. data/public/libs/codemirror/mode/diff/index.html +105 -0
  385. data/public/libs/codemirror/mode/ecl/ecl.js +192 -0
  386. data/public/libs/codemirror/mode/ecl/index.html +39 -0
  387. data/public/libs/codemirror/mode/erlang/erlang.js +463 -0
  388. data/public/libs/codemirror/mode/erlang/index.html +64 -0
  389. data/public/libs/codemirror/mode/gas/gas.js +326 -0
  390. data/public/libs/codemirror/mode/gas/index.html +57 -0
  391. data/public/libs/codemirror/mode/gfm/gfm.js +96 -0
  392. data/public/libs/codemirror/mode/gfm/index.html +74 -0
  393. data/public/libs/codemirror/mode/gfm/test.js +112 -0
  394. data/public/libs/codemirror/mode/go/go.js +165 -0
  395. data/public/libs/codemirror/mode/go/index.html +74 -0
  396. data/public/libs/codemirror/mode/groovy/groovy.js +210 -0
  397. data/public/libs/codemirror/mode/groovy/index.html +73 -0
  398. data/public/libs/codemirror/mode/haskell/haskell.js +242 -0
  399. data/public/libs/codemirror/mode/haskell/index.html +62 -0
  400. data/public/libs/codemirror/mode/haxe/haxe.js +429 -0
  401. data/public/libs/codemirror/mode/haxe/index.html +90 -0
  402. data/public/libs/codemirror/mode/htmlembedded/htmlembedded.js +73 -0
  403. data/public/libs/codemirror/mode/htmlembedded/index.html +49 -0
  404. data/public/libs/codemirror/mode/htmlmixed/htmlmixed.js +104 -0
  405. data/public/libs/codemirror/mode/htmlmixed/index.html +73 -0
  406. data/public/libs/codemirror/mode/http/http.js +98 -0
  407. data/public/libs/codemirror/mode/http/index.html +32 -0
  408. data/public/libs/codemirror/mode/javascript/index.html +92 -0
  409. data/public/libs/codemirror/mode/javascript/javascript.js +467 -0
  410. data/public/libs/codemirror/mode/javascript/typescript.html +48 -0
  411. data/public/libs/codemirror/mode/jinja2/index.html +38 -0
  412. data/public/libs/codemirror/mode/jinja2/jinja2.js +42 -0
  413. data/public/libs/codemirror/mode/less/index.html +741 -0
  414. data/public/libs/codemirror/mode/less/less.js +266 -0
  415. data/public/libs/codemirror/mode/livescript/LICENSE +23 -0
  416. data/public/libs/codemirror/mode/livescript/index.html +446 -0
  417. data/public/libs/codemirror/mode/livescript/livescript.js +267 -0
  418. data/public/libs/codemirror/mode/livescript/livescript.ls +266 -0
  419. data/public/libs/codemirror/mode/lua/index.html +74 -0
  420. data/public/libs/codemirror/mode/lua/lua.js +140 -0
  421. data/public/libs/codemirror/mode/markdown/index.html +344 -0
  422. data/public/libs/codemirror/mode/markdown/markdown.js +526 -0
  423. data/public/libs/codemirror/mode/markdown/test.js +636 -0
  424. data/public/libs/codemirror/mode/meta.js +75 -0
  425. data/public/libs/codemirror/mode/mirc/index.html +149 -0
  426. data/public/libs/codemirror/mode/mirc/mirc.js +177 -0
  427. data/public/libs/codemirror/mode/ntriples/index.html +33 -0
  428. data/public/libs/codemirror/mode/ntriples/ntriples.js +170 -0
  429. data/public/libs/codemirror/mode/ocaml/index.html +131 -0
  430. data/public/libs/codemirror/mode/ocaml/ocaml.js +113 -0
  431. data/public/libs/codemirror/mode/pascal/LICENSE +7 -0
  432. data/public/libs/codemirror/mode/pascal/index.html +48 -0
  433. data/public/libs/codemirror/mode/pascal/pascal.js +94 -0
  434. data/public/libs/codemirror/mode/perl/LICENSE +19 -0
  435. data/public/libs/codemirror/mode/perl/index.html +62 -0
  436. data/public/libs/codemirror/mode/perl/perl.js +816 -0
  437. data/public/libs/codemirror/mode/php/index.html +51 -0
  438. data/public/libs/codemirror/mode/php/php.js +129 -0
  439. data/public/libs/codemirror/mode/pig/index.html +42 -0
  440. data/public/libs/codemirror/mode/pig/pig.js +171 -0
  441. data/public/libs/codemirror/mode/properties/index.html +41 -0
  442. data/public/libs/codemirror/mode/properties/properties.js +63 -0
  443. data/public/libs/codemirror/mode/python/LICENSE.txt +21 -0
  444. data/public/libs/codemirror/mode/python/index.html +135 -0
  445. data/public/libs/codemirror/mode/python/python.js +340 -0
  446. data/public/libs/codemirror/mode/q/index.html +131 -0
  447. data/public/libs/codemirror/mode/q/q.js +124 -0
  448. data/public/libs/codemirror/mode/r/LICENSE +24 -0
  449. data/public/libs/codemirror/mode/r/index.html +74 -0
  450. data/public/libs/codemirror/mode/r/r.js +141 -0
  451. data/public/libs/codemirror/mode/rpm/changes/changes.js +19 -0
  452. data/public/libs/codemirror/mode/rpm/changes/index.html +53 -0
  453. data/public/libs/codemirror/mode/rpm/spec/index.html +99 -0
  454. data/public/libs/codemirror/mode/rpm/spec/spec.css +5 -0
  455. data/public/libs/codemirror/mode/rpm/spec/spec.js +66 -0
  456. data/public/libs/codemirror/mode/rst/LICENSE.txt +21 -0
  457. data/public/libs/codemirror/mode/rst/index.html +524 -0
  458. data/public/libs/codemirror/mode/rst/rst.js +550 -0
  459. data/public/libs/codemirror/mode/ruby/LICENSE +24 -0
  460. data/public/libs/codemirror/mode/ruby/index.html +173 -0
  461. data/public/libs/codemirror/mode/ruby/ruby.js +197 -0
  462. data/public/libs/codemirror/mode/rust/index.html +48 -0
  463. data/public/libs/codemirror/mode/rust/rust.js +432 -0
  464. data/public/libs/codemirror/mode/sass/index.html +54 -0
  465. data/public/libs/codemirror/mode/sass/sass.js +349 -0
  466. data/public/libs/codemirror/mode/scheme/index.html +65 -0
  467. data/public/libs/codemirror/mode/scheme/scheme.js +230 -0
  468. data/public/libs/codemirror/mode/shell/index.html +51 -0
  469. data/public/libs/codemirror/mode/shell/shell.js +118 -0
  470. data/public/libs/codemirror/mode/sieve/LICENSE +19 -0
  471. data/public/libs/codemirror/mode/sieve/index.html +81 -0
  472. data/public/libs/codemirror/mode/sieve/sieve.js +183 -0
  473. data/public/libs/codemirror/mode/smalltalk/index.html +57 -0
  474. data/public/libs/codemirror/mode/smalltalk/smalltalk.js +141 -0
  475. data/public/libs/codemirror/mode/smarty/index.html +83 -0
  476. data/public/libs/codemirror/mode/smarty/smarty.js +148 -0
  477. data/public/libs/codemirror/mode/sparql/index.html +42 -0
  478. data/public/libs/codemirror/mode/sparql/sparql.js +143 -0
  479. data/public/libs/codemirror/mode/sql/index.html +68 -0
  480. data/public/libs/codemirror/mode/sql/sql.js +268 -0
  481. data/public/libs/codemirror/mode/stex/index.html +98 -0
  482. data/public/libs/codemirror/mode/stex/stex.js +246 -0
  483. data/public/libs/codemirror/mode/stex/test.js +117 -0
  484. data/public/libs/codemirror/mode/tcl/index.html +129 -0
  485. data/public/libs/codemirror/mode/tcl/tcl.js +131 -0
  486. data/public/libs/codemirror/mode/tiddlywiki/index.html +142 -0
  487. data/public/libs/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  488. data/public/libs/codemirror/mode/tiddlywiki/tiddlywiki.js +353 -0
  489. data/public/libs/codemirror/mode/tiki/index.html +81 -0
  490. data/public/libs/codemirror/mode/tiki/tiki.css +26 -0
  491. data/public/libs/codemirror/mode/tiki/tiki.js +308 -0
  492. data/public/libs/codemirror/mode/turtle/index.html +39 -0
  493. data/public/libs/codemirror/mode/turtle/turtle.js +145 -0
  494. data/public/libs/codemirror/mode/vb/LICENSE.txt +21 -0
  495. data/public/libs/codemirror/mode/vb/index.html +88 -0
  496. data/public/libs/codemirror/mode/vb/vb.js +259 -0
  497. data/public/libs/codemirror/mode/vbscript/index.html +42 -0
  498. data/public/libs/codemirror/mode/vbscript/vbscript.js +26 -0
  499. data/public/libs/codemirror/mode/velocity/index.html +103 -0
  500. data/public/libs/codemirror/mode/velocity/velocity.js +144 -0
  501. data/public/libs/codemirror/mode/verilog/index.html +121 -0
  502. data/public/libs/codemirror/mode/verilog/verilog.js +182 -0
  503. data/public/libs/codemirror/mode/xml/index.html +45 -0
  504. data/public/libs/codemirror/mode/xml/xml.js +328 -0
  505. data/public/libs/codemirror/mode/xquery/LICENSE +20 -0
  506. data/public/libs/codemirror/mode/xquery/index.html +221 -0
  507. data/public/libs/codemirror/mode/xquery/test.js +64 -0
  508. data/public/libs/codemirror/mode/xquery/xquery.js +450 -0
  509. data/public/libs/codemirror/mode/yaml/index.html +68 -0
  510. data/public/libs/codemirror/mode/yaml/yaml.js +95 -0
  511. data/public/libs/codemirror/mode/z80/index.html +39 -0
  512. data/public/libs/codemirror/mode/z80/z80.js +85 -0
  513. data/public/libs/codemirror/package.json +21 -0
  514. data/public/libs/codemirror/test/doc_test.js +329 -0
  515. data/public/libs/codemirror/test/driver.js +138 -0
  516. data/public/libs/codemirror/test/index.html +182 -0
  517. data/public/libs/codemirror/test/lint/acorn.js +1593 -0
  518. data/public/libs/codemirror/test/lint/lint.js +112 -0
  519. data/public/libs/codemirror/test/lint/parse-js.js +1372 -0
  520. data/public/libs/codemirror/test/lint/walk.js +216 -0
  521. data/public/libs/codemirror/test/mode_test.css +10 -0
  522. data/public/libs/codemirror/test/mode_test.js +192 -0
  523. data/public/libs/codemirror/test/phantom_driver.js +31 -0
  524. data/public/libs/codemirror/test/run.js +33 -0
  525. data/public/libs/codemirror/test/test.js +1400 -0
  526. data/public/libs/codemirror/test/vim_test.js +1688 -0
  527. data/public/libs/codemirror/theme/ambiance-mobile.css +5 -0
  528. data/public/libs/codemirror/theme/ambiance.css +75 -0
  529. data/public/libs/codemirror/theme/blackboard.css +25 -0
  530. data/public/libs/codemirror/theme/cobalt.css +18 -0
  531. data/public/libs/codemirror/theme/eclipse.css +25 -0
  532. data/public/libs/codemirror/theme/elegant.css +10 -0
  533. data/public/libs/codemirror/theme/erlang-dark.css +21 -0
  534. data/public/libs/codemirror/theme/lesser-dark.css +44 -0
  535. data/public/libs/codemirror/theme/midnight.css +52 -0
  536. data/public/libs/codemirror/theme/monokai.css +28 -0
  537. data/public/libs/codemirror/theme/neat.css +9 -0
  538. data/public/libs/codemirror/theme/night.css +21 -0
  539. data/public/libs/codemirror/theme/rubyblue.css +21 -0
  540. data/public/libs/codemirror/theme/solarized.css +207 -0
  541. data/public/libs/codemirror/theme/twilight.css +26 -0
  542. data/public/libs/codemirror/theme/vibrant-ink.css +27 -0
  543. data/public/libs/codemirror/theme/xq-dark.css +46 -0
  544. data/public/libs/codemirror/theme/xq-light.css +43 -0
  545. data/public/libs/font-awesome/css/font-awesome-ie7.css +983 -0
  546. data/public/libs/font-awesome/css/font-awesome-ie7.min.css +24 -0
  547. data/public/libs/font-awesome/css/font-awesome.css +1268 -0
  548. data/public/libs/font-awesome/css/font-awesome.min.css +24 -0
  549. data/public/libs/font-awesome/font/FontAwesome.otf +0 -0
  550. data/public/libs/font-awesome/font/fontawesome-webfont.eot +0 -0
  551. data/public/libs/font-awesome/font/fontawesome-webfont.svg +339 -0
  552. data/public/libs/font-awesome/font/fontawesome-webfont.ttf +0 -0
  553. data/public/libs/font-awesome/font/fontawesome-webfont.woff +0 -0
  554. data/public/libs/font-awesome/less/bootstrap.less +78 -0
  555. data/public/libs/font-awesome/less/core.less +132 -0
  556. data/public/libs/font-awesome/less/extras.less +79 -0
  557. data/public/libs/font-awesome/less/font-awesome-ie7.less +413 -0
  558. data/public/libs/font-awesome/less/font-awesome.less +32 -0
  559. data/public/libs/font-awesome/less/icons.less +330 -0
  560. data/public/libs/font-awesome/less/mixins.less +34 -0
  561. data/public/libs/font-awesome/less/path.less +15 -0
  562. data/public/libs/font-awesome/less/variables.less +9 -0
  563. data/public/libs/jquery-1.10.0.min.js +6 -0
  564. data/public/libs/jquery-ui.min.js +12 -0
  565. data/public/libs/jquery.jsPlumb-1.4.0-all.js +9571 -0
  566. data/public/libs/jquery.livequery.js +226 -0
  567. data/public/libs/jsPlumbInitializer.js +72 -0
  568. data/public/libs/jstree/README.txt +10 -0
  569. data/public/libs/jstree/_demo/_dump.sql +20 -0
  570. data/public/libs/jstree/_demo/_inc/__mysql_errors.log +0 -0
  571. data/public/libs/jstree/_demo/_inc/class._database.php +146 -0
  572. data/public/libs/jstree/_demo/_inc/class._database_i.php +152 -0
  573. data/public/libs/jstree/_demo/_inc/class.tree.php +602 -0
  574. data/public/libs/jstree/_demo/_install.txt +6 -0
  575. data/public/libs/jstree/_demo/config.php +14 -0
  576. data/public/libs/jstree/_demo/file.png +0 -0
  577. data/public/libs/jstree/_demo/folder.png +0 -0
  578. data/public/libs/jstree/_demo/index.html +461 -0
  579. data/public/libs/jstree/_demo/root.png +0 -0
  580. data/public/libs/jstree/_demo/server.php +69 -0
  581. data/public/libs/jstree/_docs/!style.css +48 -0
  582. data/public/libs/jstree/_docs/_drive.png +0 -0
  583. data/public/libs/jstree/_docs/_html_data.html +2 -0
  584. data/public/libs/jstree/_docs/_json_data.json +4 -0
  585. data/public/libs/jstree/_docs/_search_data.json +6 -0
  586. data/public/libs/jstree/_docs/_search_result.json +1 -0
  587. data/public/libs/jstree/_docs/_xml_flat.xml +12 -0
  588. data/public/libs/jstree/_docs/_xml_nest.xml +18 -0
  589. data/public/libs/jstree/_docs/checkbox.html +171 -0
  590. data/public/libs/jstree/_docs/contextmenu.html +121 -0
  591. data/public/libs/jstree/_docs/cookies.html +97 -0
  592. data/public/libs/jstree/_docs/core.html +689 -0
  593. data/public/libs/jstree/_docs/crrm.html +316 -0
  594. data/public/libs/jstree/_docs/dnd.html +199 -0
  595. data/public/libs/jstree/_docs/hotkeys.html +82 -0
  596. data/public/libs/jstree/_docs/html_data.html +175 -0
  597. data/public/libs/jstree/_docs/index.html +86 -0
  598. data/public/libs/jstree/_docs/json_data.html +249 -0
  599. data/public/libs/jstree/_docs/languages.html +152 -0
  600. data/public/libs/jstree/_docs/logo.png +0 -0
  601. data/public/libs/jstree/_docs/search.html +153 -0
  602. data/public/libs/jstree/_docs/sort.html +85 -0
  603. data/public/libs/jstree/_docs/syntax/!script.js +2232 -0
  604. data/public/libs/jstree/_docs/syntax/!style.css +511 -0
  605. data/public/libs/jstree/_docs/syntax/clipboard.swf +0 -0
  606. data/public/libs/jstree/_docs/syntax/help.png +0 -0
  607. data/public/libs/jstree/_docs/syntax/magnifier.png +0 -0
  608. data/public/libs/jstree/_docs/syntax/page_white_code.png +0 -0
  609. data/public/libs/jstree/_docs/syntax/page_white_copy.png +0 -0
  610. data/public/libs/jstree/_docs/syntax/printer.png +0 -0
  611. data/public/libs/jstree/_docs/syntax/wrapping.png +0 -0
  612. data/public/libs/jstree/_docs/themeroller.html +107 -0
  613. data/public/libs/jstree/_docs/themes.html +127 -0
  614. data/public/libs/jstree/_docs/types.html +178 -0
  615. data/public/libs/jstree/_docs/ui.html +197 -0
  616. data/public/libs/jstree/_docs/unique.html +85 -0
  617. data/public/libs/jstree/_docs/xml_data.html +218 -0
  618. data/public/libs/jstree/_lib/jquery.cookie.js +96 -0
  619. data/public/libs/jstree/_lib/jquery.hotkeys.js +99 -0
  620. data/public/libs/jstree/_lib/jquery.js +5 -0
  621. data/public/libs/jstree/jquery.jstree.js +4564 -0
  622. data/public/libs/jstree/themes/apple/bg.jpg +0 -0
  623. data/public/libs/jstree/themes/apple/d.png +0 -0
  624. data/public/libs/jstree/themes/apple/dot_for_ie.gif +0 -0
  625. data/public/libs/jstree/themes/apple/style.css +61 -0
  626. data/public/libs/jstree/themes/apple/throbber.gif +0 -0
  627. data/public/libs/jstree/themes/classic/d.gif +0 -0
  628. data/public/libs/jstree/themes/classic/d.png +0 -0
  629. data/public/libs/jstree/themes/classic/dot_for_ie.gif +0 -0
  630. data/public/libs/jstree/themes/classic/style.css +77 -0
  631. data/public/libs/jstree/themes/classic/throbber.gif +0 -0
  632. data/public/libs/jstree/themes/default-rtl/d.gif +0 -0
  633. data/public/libs/jstree/themes/default-rtl/d.png +0 -0
  634. data/public/libs/jstree/themes/default-rtl/dots.gif +0 -0
  635. data/public/libs/jstree/themes/default-rtl/style.css +84 -0
  636. data/public/libs/jstree/themes/default-rtl/throbber.gif +0 -0
  637. data/public/libs/jstree/themes/default/d.gif +0 -0
  638. data/public/libs/jstree/themes/default/d.png +0 -0
  639. data/public/libs/jstree/themes/default/style.css +74 -0
  640. data/public/libs/jstree/themes/default/throbber.gif +0 -0
  641. data/public/themes/geo-bootstrap/README.md +25 -0
  642. data/public/themes/geo-bootstrap/img/flames.gif +0 -0
  643. data/public/themes/geo-bootstrap/img/glyphicons-halflings-white.png +0 -0
  644. data/public/themes/geo-bootstrap/img/glyphicons-halflings.png +0 -0
  645. data/public/themes/geo-bootstrap/img/microfab.gif +0 -0
  646. data/public/themes/geo-bootstrap/img/progress.gif +0 -0
  647. data/public/themes/geo-bootstrap/img/rainbow.gif +0 -0
  648. data/public/themes/geo-bootstrap/img/stars.gif +0 -0
  649. data/public/themes/geo-bootstrap/img/test/7upspot.gif +0 -0
  650. data/public/themes/geo-bootstrap/img/test/americanflag.gif +0 -0
  651. data/public/themes/geo-bootstrap/img/test/community.gif +0 -0
  652. data/public/themes/geo-bootstrap/img/test/computer-01.gif +0 -0
  653. data/public/themes/geo-bootstrap/img/test/computer.gif +0 -0
  654. data/public/themes/geo-bootstrap/img/test/construction.gif +0 -0
  655. data/public/themes/geo-bootstrap/img/test/counter.gif +0 -0
  656. data/public/themes/geo-bootstrap/img/test/counter2.gif +0 -0
  657. data/public/themes/geo-bootstrap/img/test/divider.gif +0 -0
  658. data/public/themes/geo-bootstrap/img/test/divider1.gif +0 -0
  659. data/public/themes/geo-bootstrap/img/test/divider2.gif +0 -0
  660. data/public/themes/geo-bootstrap/img/test/divider3.gif +0 -0
  661. data/public/themes/geo-bootstrap/img/test/divider4.gif +0 -0
  662. data/public/themes/geo-bootstrap/img/test/drudgesiren.gif +0 -0
  663. data/public/themes/geo-bootstrap/img/test/emailme.gif +0 -0
  664. data/public/themes/geo-bootstrap/img/test/funky.gif +0 -0
  665. data/public/themes/geo-bootstrap/img/test/geocities.jpg +0 -0
  666. data/public/themes/geo-bootstrap/img/test/hacker.gif +0 -0
  667. data/public/themes/geo-bootstrap/img/test/heart.gif +0 -0
  668. data/public/themes/geo-bootstrap/img/test/hot.gif +0 -0
  669. data/public/themes/geo-bootstrap/img/test/ie_logo.gif +0 -0
  670. data/public/themes/geo-bootstrap/img/test/mailkitten.gif +0 -0
  671. data/public/themes/geo-bootstrap/img/test/mchammer.gif +0 -0
  672. data/public/themes/geo-bootstrap/img/test/new.gif +0 -0
  673. data/public/themes/geo-bootstrap/img/test/new2.gif +0 -0
  674. data/public/themes/geo-bootstrap/img/test/noframes.gif +0 -0
  675. data/public/themes/geo-bootstrap/img/test/notepad.gif +0 -0
  676. data/public/themes/geo-bootstrap/img/test/ns_logo.gif +0 -0
  677. data/public/themes/geo-bootstrap/img/test/sign-in.gif +0 -0
  678. data/public/themes/geo-bootstrap/img/test/spinningearth.gif +0 -0
  679. data/public/themes/geo-bootstrap/img/test/underconstruction.gif +0 -0
  680. data/public/themes/geo-bootstrap/img/test/wabwalk.gif +0 -0
  681. data/public/themes/geo-bootstrap/img/test/webtrips.gif +0 -0
  682. data/public/themes/geo-bootstrap/img/test/yahooweek.gif +0 -0
  683. data/public/themes/geo-bootstrap/package.json +21 -0
  684. data/public/themes/geo-bootstrap/swatch/bootstrap-responsive.css +1109 -0
  685. data/public/themes/geo-bootstrap/swatch/bootstrap-responsive.min.css +9 -0
  686. data/public/themes/geo-bootstrap/swatch/bootstrap.css +6462 -0
  687. data/public/themes/geo-bootstrap/swatch/bootstrap.min.css +9 -0
  688. metadata +791 -0
@@ -0,0 +1,112 @@
1
+ /*
2
+ Simple linter, based on the Acorn [1] parser module
3
+
4
+ All of the existing linters either cramp my style or have huge
5
+ dependencies (Closure). So here's a very simple, non-invasive one
6
+ that only spots
7
+
8
+ - missing semicolons and trailing commas
9
+ - variables or properties that are reserved words
10
+ - assigning to a variable you didn't declare
11
+
12
+ [1]: https://github.com/marijnh/acorn/
13
+ */
14
+
15
+ var fs = require("fs"), acorn = require("./acorn.js"), walk = require("./walk.js");
16
+
17
+ var scopePasser = walk.make({
18
+ ScopeBody: function(node, prev, c) { c(node, node.scope); }
19
+ });
20
+
21
+ function checkFile(fileName) {
22
+ var file = fs.readFileSync(fileName, "utf8"), notAllowed;
23
+ if (notAllowed = file.match(/[\x00-\x08\x0b\x0c\x0e-\x19\uFEFF\t]|[ \t]\n/)) {
24
+ var msg;
25
+ if (notAllowed[0] == "\t") msg = "Found tab character";
26
+ else if (notAllowed[0].indexOf("\n") > -1) msg = "Trailing whitespace";
27
+ else msg = "Undesirable character " + notAllowed[0].charCodeAt(0);
28
+ var info = acorn.getLineInfo(file, notAllowed.index);
29
+ fail(msg + " at line " + info.line + ", column " + info.column, {source: fileName});
30
+ }
31
+
32
+ try {
33
+ var parsed = acorn.parse(file, {
34
+ locations: true,
35
+ ecmaVersion: 3,
36
+ strictSemicolons: true,
37
+ allowTrailingCommas: false,
38
+ forbidReserved: true,
39
+ sourceFile: fileName
40
+ });
41
+ } catch (e) {
42
+ fail(e.message, {source: fileName});
43
+ return;
44
+ }
45
+
46
+ var scopes = [];
47
+
48
+ walk.simple(parsed, {
49
+ ScopeBody: function(node, scope) {
50
+ node.scope = scope;
51
+ scopes.push(scope);
52
+ }
53
+ }, walk.scopeVisitor, {vars: Object.create(null)});
54
+
55
+ var ignoredGlobals = Object.create(null);
56
+
57
+ function inScope(name, scope) {
58
+ for (var cur = scope; cur; cur = cur.prev)
59
+ if (name in cur.vars) return true;
60
+ }
61
+ function checkLHS(node, scope) {
62
+ if (node.type == "Identifier" && !(node.name in ignoredGlobals) &&
63
+ !inScope(node.name, scope)) {
64
+ ignoredGlobals[node.name] = true;
65
+ fail("Assignment to global variable", node.loc);
66
+ }
67
+ }
68
+
69
+ walk.simple(parsed, {
70
+ UpdateExpression: function(node, scope) {checkLHS(node.argument, scope);},
71
+ AssignmentExpression: function(node, scope) {checkLHS(node.left, scope);},
72
+ Identifier: function(node, scope) {
73
+ // Mark used identifiers
74
+ for (var cur = scope; cur; cur = cur.prev)
75
+ if (node.name in cur.vars) {
76
+ cur.vars[node.name].used = true;
77
+ return;
78
+ }
79
+ },
80
+ FunctionExpression: function(node) {
81
+ if (node.id) fail("Named function expression", node.loc);
82
+ }
83
+ }, scopePasser);
84
+
85
+ for (var i = 0; i < scopes.length; ++i) {
86
+ var scope = scopes[i];
87
+ for (var name in scope.vars) {
88
+ var info = scope.vars[name];
89
+ if (!info.used && info.type != "catch clause" && info.type != "function name" && name.charAt(0) != "_")
90
+ fail("Unused " + info.type + " " + name, info.node.loc);
91
+ }
92
+ }
93
+ }
94
+
95
+ var failed = false;
96
+ function fail(msg, pos) {
97
+ if (pos.start) msg += " (" + pos.start.line + ":" + pos.start.column + ")";
98
+ console.log(pos.source + ": " + msg);
99
+ failed = true;
100
+ }
101
+
102
+ function checkDir(dir) {
103
+ fs.readdirSync(dir).forEach(function(file) {
104
+ var fname = dir + "/" + file;
105
+ if (/\.js$/.test(file)) checkFile(fname);
106
+ else if (fs.lstatSync(fname).isDirectory()) checkDir(fname);
107
+ });
108
+ }
109
+
110
+ exports.checkDir = checkDir;
111
+ exports.checkFile = checkFile;
112
+ exports.success = function() { return !failed; };
@@ -0,0 +1,1372 @@
1
+ /***********************************************************************
2
+
3
+ A JavaScript tokenizer / parser / beautifier / compressor.
4
+
5
+ This version is suitable for Node.js. With minimal changes (the
6
+ exports stuff) it should work on any JS platform.
7
+
8
+ This file contains the tokenizer/parser. It is a port to JavaScript
9
+ of parse-js [1], a JavaScript parser library written in Common Lisp
10
+ by Marijn Haverbeke. Thank you Marijn!
11
+
12
+ [1] http://marijn.haverbeke.nl/parse-js/
13
+
14
+ Exported functions:
15
+
16
+ - tokenizer(code) -- returns a function. Call the returned
17
+ function to fetch the next token.
18
+
19
+ - parse(code) -- returns an AST of the given JavaScript code.
20
+
21
+ -------------------------------- (C) ---------------------------------
22
+
23
+ Author: Mihai Bazon
24
+ <mihai.bazon@gmail.com>
25
+ http://mihai.bazon.net/blog
26
+
27
+ Distributed under the BSD license:
28
+
29
+ Copyright 2010 (c) Mihai Bazon <mihai.bazon@gmail.com>
30
+ Based on parse-js (http://marijn.haverbeke.nl/parse-js/).
31
+
32
+ Redistribution and use in source and binary forms, with or without
33
+ modification, are permitted provided that the following conditions
34
+ are met:
35
+
36
+ * Redistributions of source code must retain the above
37
+ copyright notice, this list of conditions and the following
38
+ disclaimer.
39
+
40
+ * Redistributions in binary form must reproduce the above
41
+ copyright notice, this list of conditions and the following
42
+ disclaimer in the documentation and/or other materials
43
+ provided with the distribution.
44
+
45
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY
46
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
48
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
49
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
50
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
51
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
52
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
53
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
54
+ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
55
+ THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
56
+ SUCH DAMAGE.
57
+
58
+ ***********************************************************************/
59
+
60
+ /* -----[ Tokenizer (constants) ]----- */
61
+
62
+ var KEYWORDS = array_to_hash([
63
+ "break",
64
+ "case",
65
+ "catch",
66
+ "const",
67
+ "continue",
68
+ "debugger",
69
+ "default",
70
+ "delete",
71
+ "do",
72
+ "else",
73
+ "finally",
74
+ "for",
75
+ "function",
76
+ "if",
77
+ "in",
78
+ "instanceof",
79
+ "new",
80
+ "return",
81
+ "switch",
82
+ "throw",
83
+ "try",
84
+ "typeof",
85
+ "var",
86
+ "void",
87
+ "while",
88
+ "with"
89
+ ]);
90
+
91
+ var RESERVED_WORDS = array_to_hash([
92
+ "abstract",
93
+ "boolean",
94
+ "byte",
95
+ "char",
96
+ "class",
97
+ "double",
98
+ "enum",
99
+ "export",
100
+ "extends",
101
+ "final",
102
+ "float",
103
+ "goto",
104
+ "implements",
105
+ "import",
106
+ "int",
107
+ "interface",
108
+ "long",
109
+ "native",
110
+ "package",
111
+ "private",
112
+ "protected",
113
+ "public",
114
+ "short",
115
+ "static",
116
+ "super",
117
+ "synchronized",
118
+ "throws",
119
+ "transient",
120
+ "volatile"
121
+ ]);
122
+
123
+ var KEYWORDS_BEFORE_EXPRESSION = array_to_hash([
124
+ "return",
125
+ "new",
126
+ "delete",
127
+ "throw",
128
+ "else",
129
+ "case"
130
+ ]);
131
+
132
+ var KEYWORDS_ATOM = array_to_hash([
133
+ "false",
134
+ "null",
135
+ "true",
136
+ "undefined"
137
+ ]);
138
+
139
+ var OPERATOR_CHARS = array_to_hash(characters("+-*&%=<>!?|~^"));
140
+
141
+ var RE_HEX_NUMBER = /^0x[0-9a-f]+$/i;
142
+ var RE_OCT_NUMBER = /^0[0-7]+$/;
143
+ var RE_DEC_NUMBER = /^\d*\.?\d*(?:e[+-]?\d*(?:\d\.?|\.?\d)\d*)?$/i;
144
+
145
+ var OPERATORS = array_to_hash([
146
+ "in",
147
+ "instanceof",
148
+ "typeof",
149
+ "new",
150
+ "void",
151
+ "delete",
152
+ "++",
153
+ "--",
154
+ "+",
155
+ "-",
156
+ "!",
157
+ "~",
158
+ "&",
159
+ "|",
160
+ "^",
161
+ "*",
162
+ "/",
163
+ "%",
164
+ ">>",
165
+ "<<",
166
+ ">>>",
167
+ "<",
168
+ ">",
169
+ "<=",
170
+ ">=",
171
+ "==",
172
+ "===",
173
+ "!=",
174
+ "!==",
175
+ "?",
176
+ "=",
177
+ "+=",
178
+ "-=",
179
+ "/=",
180
+ "*=",
181
+ "%=",
182
+ ">>=",
183
+ "<<=",
184
+ ">>>=",
185
+ "|=",
186
+ "^=",
187
+ "&=",
188
+ "&&",
189
+ "||"
190
+ ]);
191
+
192
+ var WHITESPACE_CHARS = array_to_hash(characters(" \u00a0\n\r\t\f\u000b\u200b\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000"));
193
+
194
+ var PUNC_BEFORE_EXPRESSION = array_to_hash(characters("[{(,.;:"));
195
+
196
+ var PUNC_CHARS = array_to_hash(characters("[]{}(),;:"));
197
+
198
+ var REGEXP_MODIFIERS = array_to_hash(characters("gmsiy"));
199
+
200
+ /* -----[ Tokenizer ]----- */
201
+
202
+ var UNICODE = { // Unicode 6.1
203
+ letter: new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u0527\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0\\u08A2-\\u08AC\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0977\\u0979-\\u097F\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C33\\u0C35-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F0\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191C\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA697\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA793\\uA7A0-\\uA7AA\\uA7F8-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA80-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"),
204
+ combining_mark: new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065F\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0859-\\u085B\\u08E4-\\u08FE\\u0900-\\u0903\\u093A-\\u093C\\u093E-\\u094F\\u0951-\\u0957\\u0962\\u0963\\u0981-\\u0983\\u09BC\\u09BE-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CD\\u09D7\\u09E2\\u09E3\\u0A01-\\u0A03\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81-\\u0A83\\u0ABC\\u0ABE-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AE2\\u0AE3\\u0B01-\\u0B03\\u0B3C\\u0B3E-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B62\\u0B63\\u0B82\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD7\\u0C01-\\u0C03\\u0C3E-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0C82\\u0C83\\u0CBC\\u0CBE-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CE2\\u0CE3\\u0D02\\u0D03\\u0D3E-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4D\\u0D57\\u0D62\\u0D63\\u0D82\\u0D83\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F3E\\u0F3F\\u0F71-\\u0F84\\u0F86\\u0F87\\u0F8D-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102B-\\u103E\\u1056-\\u1059\\u105E-\\u1060\\u1062-\\u1064\\u1067-\\u106D\\u1071-\\u1074\\u1082-\\u108D\\u108F\\u109A-\\u109D\\u135D-\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B4-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u192B\\u1930-\\u193B\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A17-\\u1A1B\\u1A55-\\u1A5E\\u1A60-\\u1A7C\\u1A7F\\u1B00-\\u1B04\\u1B34-\\u1B44\\u1B6B-\\u1B73\\u1B80-\\u1B82\\u1BA1-\\u1BAD\\u1BE6-\\u1BF3\\u1C24-\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE8\\u1CED\\u1CF2-\\u1CF4\\u1DC0-\\u1DE6\\u1DFC-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2D7F\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA674-\\uA67D\\uA69F\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA823-\\uA827\\uA880\\uA881\\uA8B4-\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA953\\uA980-\\uA983\\uA9B3-\\uA9C0\\uAA29-\\uAA36\\uAA43\\uAA4C\\uAA4D\\uAA7B\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uAAEB-\\uAAEF\\uAAF5\\uAAF6\\uABE3-\\uABEA\\uABEC\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"),
205
+ connector_punctuation: new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]"),
206
+ digit: new RegExp("[\\u0030-\\u0039\\u0660-\\u0669\\u06F0-\\u06F9\\u07C0-\\u07C9\\u0966-\\u096F\\u09E6-\\u09EF\\u0A66-\\u0A6F\\u0AE6-\\u0AEF\\u0B66-\\u0B6F\\u0BE6-\\u0BEF\\u0C66-\\u0C6F\\u0CE6-\\u0CEF\\u0D66-\\u0D6F\\u0E50-\\u0E59\\u0ED0-\\u0ED9\\u0F20-\\u0F29\\u1040-\\u1049\\u1090-\\u1099\\u17E0-\\u17E9\\u1810-\\u1819\\u1946-\\u194F\\u19D0-\\u19D9\\u1A80-\\u1A89\\u1A90-\\u1A99\\u1B50-\\u1B59\\u1BB0-\\u1BB9\\u1C40-\\u1C49\\u1C50-\\u1C59\\uA620-\\uA629\\uA8D0-\\uA8D9\\uA900-\\uA909\\uA9D0-\\uA9D9\\uAA50-\\uAA59\\uABF0-\\uABF9\\uFF10-\\uFF19]")
207
+ };
208
+
209
+ function is_letter(ch) {
210
+ return UNICODE.letter.test(ch);
211
+ };
212
+
213
+ function is_digit(ch) {
214
+ ch = ch.charCodeAt(0);
215
+ return ch >= 48 && ch <= 57;
216
+ };
217
+
218
+ function is_unicode_digit(ch) {
219
+ return UNICODE.digit.test(ch);
220
+ }
221
+
222
+ function is_alphanumeric_char(ch) {
223
+ return is_digit(ch) || is_letter(ch);
224
+ };
225
+
226
+ function is_unicode_combining_mark(ch) {
227
+ return UNICODE.combining_mark.test(ch);
228
+ };
229
+
230
+ function is_unicode_connector_punctuation(ch) {
231
+ return UNICODE.connector_punctuation.test(ch);
232
+ };
233
+
234
+ function is_identifier_start(ch) {
235
+ return ch == "$" || ch == "_" || is_letter(ch);
236
+ };
237
+
238
+ function is_identifier_char(ch) {
239
+ return is_identifier_start(ch)
240
+ || is_unicode_combining_mark(ch)
241
+ || is_unicode_digit(ch)
242
+ || is_unicode_connector_punctuation(ch)
243
+ || ch == "\u200c" // zero-width non-joiner <ZWNJ>
244
+ || ch == "\u200d" // zero-width joiner <ZWJ> (in my ECMA-262 PDF, this is also 200c)
245
+ ;
246
+ };
247
+
248
+ function parse_js_number(num) {
249
+ if (RE_HEX_NUMBER.test(num)) {
250
+ return parseInt(num.substr(2), 16);
251
+ } else if (RE_OCT_NUMBER.test(num)) {
252
+ return parseInt(num.substr(1), 8);
253
+ } else if (RE_DEC_NUMBER.test(num)) {
254
+ return parseFloat(num);
255
+ }
256
+ };
257
+
258
+ function JS_Parse_Error(message, line, col, pos) {
259
+ this.message = message;
260
+ this.line = line + 1;
261
+ this.col = col + 1;
262
+ this.pos = pos + 1;
263
+ this.stack = new Error().stack;
264
+ };
265
+
266
+ JS_Parse_Error.prototype.toString = function() {
267
+ return this.message + " (line: " + this.line + ", col: " + this.col + ", pos: " + this.pos + ")" + "\n\n" + this.stack;
268
+ };
269
+
270
+ function js_error(message, line, col, pos) {
271
+ throw new JS_Parse_Error(message, line, col, pos);
272
+ };
273
+
274
+ function is_token(token, type, val) {
275
+ return token.type == type && (val == null || token.value == val);
276
+ };
277
+
278
+ var EX_EOF = {};
279
+
280
+ function tokenizer($TEXT) {
281
+
282
+ var S = {
283
+ text : $TEXT.replace(/\r\n?|[\n\u2028\u2029]/g, "\n").replace(/^\uFEFF/, ''),
284
+ pos : 0,
285
+ tokpos : 0,
286
+ line : 0,
287
+ tokline : 0,
288
+ col : 0,
289
+ tokcol : 0,
290
+ newline_before : false,
291
+ regex_allowed : false,
292
+ comments_before : []
293
+ };
294
+
295
+ function peek() { return S.text.charAt(S.pos); };
296
+
297
+ function next(signal_eof, in_string) {
298
+ var ch = S.text.charAt(S.pos++);
299
+ if (signal_eof && !ch)
300
+ throw EX_EOF;
301
+ if (ch == "\n") {
302
+ S.newline_before = S.newline_before || !in_string;
303
+ ++S.line;
304
+ S.col = 0;
305
+ } else {
306
+ ++S.col;
307
+ }
308
+ return ch;
309
+ };
310
+
311
+ function eof() {
312
+ return !S.peek();
313
+ };
314
+
315
+ function find(what, signal_eof) {
316
+ var pos = S.text.indexOf(what, S.pos);
317
+ if (signal_eof && pos == -1) throw EX_EOF;
318
+ return pos;
319
+ };
320
+
321
+ function start_token() {
322
+ S.tokline = S.line;
323
+ S.tokcol = S.col;
324
+ S.tokpos = S.pos;
325
+ };
326
+
327
+ function token(type, value, is_comment) {
328
+ S.regex_allowed = ((type == "operator" && !HOP(UNARY_POSTFIX, value)) ||
329
+ (type == "keyword" && HOP(KEYWORDS_BEFORE_EXPRESSION, value)) ||
330
+ (type == "punc" && HOP(PUNC_BEFORE_EXPRESSION, value)));
331
+ var ret = {
332
+ type : type,
333
+ value : value,
334
+ line : S.tokline,
335
+ col : S.tokcol,
336
+ pos : S.tokpos,
337
+ endpos : S.pos,
338
+ nlb : S.newline_before
339
+ };
340
+ if (!is_comment) {
341
+ ret.comments_before = S.comments_before;
342
+ S.comments_before = [];
343
+ // make note of any newlines in the comments that came before
344
+ for (var i = 0, len = ret.comments_before.length; i < len; i++) {
345
+ ret.nlb = ret.nlb || ret.comments_before[i].nlb;
346
+ }
347
+ }
348
+ S.newline_before = false;
349
+ return ret;
350
+ };
351
+
352
+ function skip_whitespace() {
353
+ while (HOP(WHITESPACE_CHARS, peek()))
354
+ next();
355
+ };
356
+
357
+ function read_while(pred) {
358
+ var ret = "", ch = peek(), i = 0;
359
+ while (ch && pred(ch, i++)) {
360
+ ret += next();
361
+ ch = peek();
362
+ }
363
+ return ret;
364
+ };
365
+
366
+ function parse_error(err) {
367
+ js_error(err, S.tokline, S.tokcol, S.tokpos);
368
+ };
369
+
370
+ function read_num(prefix) {
371
+ var has_e = false, after_e = false, has_x = false, has_dot = prefix == ".";
372
+ var num = read_while(function(ch, i){
373
+ if (ch == "x" || ch == "X") {
374
+ if (has_x) return false;
375
+ return has_x = true;
376
+ }
377
+ if (!has_x && (ch == "E" || ch == "e")) {
378
+ if (has_e) return false;
379
+ return has_e = after_e = true;
380
+ }
381
+ if (ch == "-") {
382
+ if (after_e || (i == 0 && !prefix)) return true;
383
+ return false;
384
+ }
385
+ if (ch == "+") return after_e;
386
+ after_e = false;
387
+ if (ch == ".") {
388
+ if (!has_dot && !has_x && !has_e)
389
+ return has_dot = true;
390
+ return false;
391
+ }
392
+ return is_alphanumeric_char(ch);
393
+ });
394
+ if (prefix)
395
+ num = prefix + num;
396
+ var valid = parse_js_number(num);
397
+ if (!isNaN(valid)) {
398
+ return token("num", valid);
399
+ } else {
400
+ parse_error("Invalid syntax: " + num);
401
+ }
402
+ };
403
+
404
+ function read_escaped_char(in_string) {
405
+ var ch = next(true, in_string);
406
+ switch (ch) {
407
+ case "n" : return "\n";
408
+ case "r" : return "\r";
409
+ case "t" : return "\t";
410
+ case "b" : return "\b";
411
+ case "v" : return "\u000b";
412
+ case "f" : return "\f";
413
+ case "0" : return "\0";
414
+ case "x" : return String.fromCharCode(hex_bytes(2));
415
+ case "u" : return String.fromCharCode(hex_bytes(4));
416
+ case "\n": return "";
417
+ default : return ch;
418
+ }
419
+ };
420
+
421
+ function hex_bytes(n) {
422
+ var num = 0;
423
+ for (; n > 0; --n) {
424
+ var digit = parseInt(next(true), 16);
425
+ if (isNaN(digit))
426
+ parse_error("Invalid hex-character pattern in string");
427
+ num = (num << 4) | digit;
428
+ }
429
+ return num;
430
+ };
431
+
432
+ function read_string() {
433
+ return with_eof_error("Unterminated string constant", function(){
434
+ var quote = next(), ret = "";
435
+ for (;;) {
436
+ var ch = next(true);
437
+ if (ch == "\\") {
438
+ // read OctalEscapeSequence (XXX: deprecated if "strict mode")
439
+ // https://github.com/mishoo/UglifyJS/issues/178
440
+ var octal_len = 0, first = null;
441
+ ch = read_while(function(ch){
442
+ if (ch >= "0" && ch <= "7") {
443
+ if (!first) {
444
+ first = ch;
445
+ return ++octal_len;
446
+ }
447
+ else if (first <= "3" && octal_len <= 2) return ++octal_len;
448
+ else if (first >= "4" && octal_len <= 1) return ++octal_len;
449
+ }
450
+ return false;
451
+ });
452
+ if (octal_len > 0) ch = String.fromCharCode(parseInt(ch, 8));
453
+ else ch = read_escaped_char(true);
454
+ }
455
+ else if (ch == quote) break;
456
+ ret += ch;
457
+ }
458
+ return token("string", ret);
459
+ });
460
+ };
461
+
462
+ function read_line_comment() {
463
+ next();
464
+ var i = find("\n"), ret;
465
+ if (i == -1) {
466
+ ret = S.text.substr(S.pos);
467
+ S.pos = S.text.length;
468
+ } else {
469
+ ret = S.text.substring(S.pos, i);
470
+ S.pos = i;
471
+ }
472
+ return token("comment1", ret, true);
473
+ };
474
+
475
+ function read_multiline_comment() {
476
+ next();
477
+ return with_eof_error("Unterminated multiline comment", function(){
478
+ var i = find("*/", true),
479
+ text = S.text.substring(S.pos, i);
480
+ S.pos = i + 2;
481
+ S.line += text.split("\n").length - 1;
482
+ S.newline_before = S.newline_before || text.indexOf("\n") >= 0;
483
+
484
+ // https://github.com/mishoo/UglifyJS/issues/#issue/100
485
+ if (/^@cc_on/i.test(text)) {
486
+ warn("WARNING: at line " + S.line);
487
+ warn("*** Found \"conditional comment\": " + text);
488
+ warn("*** UglifyJS DISCARDS ALL COMMENTS. This means your code might no longer work properly in Internet Explorer.");
489
+ }
490
+
491
+ return token("comment2", text, true);
492
+ });
493
+ };
494
+
495
+ function read_name() {
496
+ var backslash = false, name = "", ch, escaped = false, hex;
497
+ while ((ch = peek()) != null) {
498
+ if (!backslash) {
499
+ if (ch == "\\") escaped = backslash = true, next();
500
+ else if (is_identifier_char(ch)) name += next();
501
+ else break;
502
+ }
503
+ else {
504
+ if (ch != "u") parse_error("Expecting UnicodeEscapeSequence -- uXXXX");
505
+ ch = read_escaped_char();
506
+ if (!is_identifier_char(ch)) parse_error("Unicode char: " + ch.charCodeAt(0) + " is not valid in identifier");
507
+ name += ch;
508
+ backslash = false;
509
+ }
510
+ }
511
+ if (HOP(KEYWORDS, name) && escaped) {
512
+ hex = name.charCodeAt(0).toString(16).toUpperCase();
513
+ name = "\\u" + "0000".substr(hex.length) + hex + name.slice(1);
514
+ }
515
+ return name;
516
+ };
517
+
518
+ function read_regexp(regexp) {
519
+ return with_eof_error("Unterminated regular expression", function(){
520
+ var prev_backslash = false, ch, in_class = false;
521
+ while ((ch = next(true))) if (prev_backslash) {
522
+ regexp += "\\" + ch;
523
+ prev_backslash = false;
524
+ } else if (ch == "[") {
525
+ in_class = true;
526
+ regexp += ch;
527
+ } else if (ch == "]" && in_class) {
528
+ in_class = false;
529
+ regexp += ch;
530
+ } else if (ch == "/" && !in_class) {
531
+ break;
532
+ } else if (ch == "\\") {
533
+ prev_backslash = true;
534
+ } else {
535
+ regexp += ch;
536
+ }
537
+ var mods = read_name();
538
+ return token("regexp", [ regexp, mods ]);
539
+ });
540
+ };
541
+
542
+ function read_operator(prefix) {
543
+ function grow(op) {
544
+ if (!peek()) return op;
545
+ var bigger = op + peek();
546
+ if (HOP(OPERATORS, bigger)) {
547
+ next();
548
+ return grow(bigger);
549
+ } else {
550
+ return op;
551
+ }
552
+ };
553
+ return token("operator", grow(prefix || next()));
554
+ };
555
+
556
+ function handle_slash() {
557
+ next();
558
+ var regex_allowed = S.regex_allowed;
559
+ switch (peek()) {
560
+ case "/":
561
+ S.comments_before.push(read_line_comment());
562
+ S.regex_allowed = regex_allowed;
563
+ return next_token();
564
+ case "*":
565
+ S.comments_before.push(read_multiline_comment());
566
+ S.regex_allowed = regex_allowed;
567
+ return next_token();
568
+ }
569
+ return S.regex_allowed ? read_regexp("") : read_operator("/");
570
+ };
571
+
572
+ function handle_dot() {
573
+ next();
574
+ return is_digit(peek())
575
+ ? read_num(".")
576
+ : token("punc", ".");
577
+ };
578
+
579
+ function read_word() {
580
+ var word = read_name();
581
+ return !HOP(KEYWORDS, word)
582
+ ? token("name", word)
583
+ : HOP(OPERATORS, word)
584
+ ? token("operator", word)
585
+ : HOP(KEYWORDS_ATOM, word)
586
+ ? token("atom", word)
587
+ : token("keyword", word);
588
+ };
589
+
590
+ function with_eof_error(eof_error, cont) {
591
+ try {
592
+ return cont();
593
+ } catch(ex) {
594
+ if (ex === EX_EOF) parse_error(eof_error);
595
+ else throw ex;
596
+ }
597
+ };
598
+
599
+ function next_token(force_regexp) {
600
+ if (force_regexp != null)
601
+ return read_regexp(force_regexp);
602
+ skip_whitespace();
603
+ start_token();
604
+ var ch = peek();
605
+ if (!ch) return token("eof");
606
+ if (is_digit(ch)) return read_num();
607
+ if (ch == '"' || ch == "'") return read_string();
608
+ if (HOP(PUNC_CHARS, ch)) return token("punc", next());
609
+ if (ch == ".") return handle_dot();
610
+ if (ch == "/") return handle_slash();
611
+ if (HOP(OPERATOR_CHARS, ch)) return read_operator();
612
+ if (ch == "\\" || is_identifier_start(ch)) return read_word();
613
+ parse_error("Unexpected character '" + ch + "'");
614
+ };
615
+
616
+ next_token.context = function(nc) {
617
+ if (nc) S = nc;
618
+ return S;
619
+ };
620
+
621
+ return next_token;
622
+
623
+ };
624
+
625
+ /* -----[ Parser (constants) ]----- */
626
+
627
+ var UNARY_PREFIX = array_to_hash([
628
+ "typeof",
629
+ "void",
630
+ "delete",
631
+ "--",
632
+ "++",
633
+ "!",
634
+ "~",
635
+ "-",
636
+ "+"
637
+ ]);
638
+
639
+ var UNARY_POSTFIX = array_to_hash([ "--", "++" ]);
640
+
641
+ var ASSIGNMENT = (function(a, ret, i){
642
+ while (i < a.length) {
643
+ ret[a[i]] = a[i].substr(0, a[i].length - 1);
644
+ i++;
645
+ }
646
+ return ret;
647
+ })(
648
+ ["+=", "-=", "/=", "*=", "%=", ">>=", "<<=", ">>>=", "|=", "^=", "&="],
649
+ { "=": true },
650
+ 0
651
+ );
652
+
653
+ var PRECEDENCE = (function(a, ret){
654
+ for (var i = 0, n = 1; i < a.length; ++i, ++n) {
655
+ var b = a[i];
656
+ for (var j = 0; j < b.length; ++j) {
657
+ ret[b[j]] = n;
658
+ }
659
+ }
660
+ return ret;
661
+ })(
662
+ [
663
+ ["||"],
664
+ ["&&"],
665
+ ["|"],
666
+ ["^"],
667
+ ["&"],
668
+ ["==", "===", "!=", "!=="],
669
+ ["<", ">", "<=", ">=", "in", "instanceof"],
670
+ [">>", "<<", ">>>"],
671
+ ["+", "-"],
672
+ ["*", "/", "%"]
673
+ ],
674
+ {}
675
+ );
676
+
677
+ var STATEMENTS_WITH_LABELS = array_to_hash([ "for", "do", "while", "switch" ]);
678
+
679
+ var ATOMIC_START_TOKEN = array_to_hash([ "atom", "num", "string", "regexp", "name" ]);
680
+
681
+ /* -----[ Parser ]----- */
682
+
683
+ function NodeWithToken(str, start, end) {
684
+ this.name = str;
685
+ this.start = start;
686
+ this.end = end;
687
+ };
688
+
689
+ NodeWithToken.prototype.toString = function() { return this.name; };
690
+
691
+ function parse($TEXT, exigent_mode, embed_tokens) {
692
+
693
+ var S = {
694
+ input : typeof $TEXT == "string" ? tokenizer($TEXT, true) : $TEXT,
695
+ token : null,
696
+ prev : null,
697
+ peeked : null,
698
+ in_function : 0,
699
+ in_directives : true,
700
+ in_loop : 0,
701
+ labels : []
702
+ };
703
+
704
+ S.token = next();
705
+
706
+ function is(type, value) {
707
+ return is_token(S.token, type, value);
708
+ };
709
+
710
+ function peek() { return S.peeked || (S.peeked = S.input()); };
711
+
712
+ function next() {
713
+ S.prev = S.token;
714
+ if (S.peeked) {
715
+ S.token = S.peeked;
716
+ S.peeked = null;
717
+ } else {
718
+ S.token = S.input();
719
+ }
720
+ S.in_directives = S.in_directives && (
721
+ S.token.type == "string" || is("punc", ";")
722
+ );
723
+ return S.token;
724
+ };
725
+
726
+ function prev() {
727
+ return S.prev;
728
+ };
729
+
730
+ function croak(msg, line, col, pos) {
731
+ var ctx = S.input.context();
732
+ js_error(msg,
733
+ line != null ? line : ctx.tokline,
734
+ col != null ? col : ctx.tokcol,
735
+ pos != null ? pos : ctx.tokpos);
736
+ };
737
+
738
+ function token_error(token, msg) {
739
+ croak(msg, token.line, token.col);
740
+ };
741
+
742
+ function unexpected(token) {
743
+ if (token == null)
744
+ token = S.token;
745
+ token_error(token, "Unexpected token: " + token.type + " (" + token.value + ")");
746
+ };
747
+
748
+ function expect_token(type, val) {
749
+ if (is(type, val)) {
750
+ return next();
751
+ }
752
+ token_error(S.token, "Unexpected token " + S.token.type + ", expected " + type);
753
+ };
754
+
755
+ function expect(punc) { return expect_token("punc", punc); };
756
+
757
+ function can_insert_semicolon() {
758
+ return !exigent_mode && (
759
+ S.token.nlb || is("eof") || is("punc", "}")
760
+ );
761
+ };
762
+
763
+ function semicolon() {
764
+ if (is("punc", ";")) next();
765
+ else if (!can_insert_semicolon()) unexpected();
766
+ };
767
+
768
+ function as() {
769
+ return slice(arguments);
770
+ };
771
+
772
+ function parenthesised() {
773
+ expect("(");
774
+ var ex = expression();
775
+ expect(")");
776
+ return ex;
777
+ };
778
+
779
+ function add_tokens(str, start, end) {
780
+ return str instanceof NodeWithToken ? str : new NodeWithToken(str, start, end);
781
+ };
782
+
783
+ function maybe_embed_tokens(parser) {
784
+ if (embed_tokens) return function() {
785
+ var start = S.token;
786
+ var ast = parser.apply(this, arguments);
787
+ ast[0] = add_tokens(ast[0], start, prev());
788
+ return ast;
789
+ };
790
+ else return parser;
791
+ };
792
+
793
+ var statement = maybe_embed_tokens(function() {
794
+ if (is("operator", "/") || is("operator", "/=")) {
795
+ S.peeked = null;
796
+ S.token = S.input(S.token.value.substr(1)); // force regexp
797
+ }
798
+ switch (S.token.type) {
799
+ case "string":
800
+ var dir = S.in_directives, stat = simple_statement();
801
+ if (dir && stat[1][0] == "string" && !is("punc", ","))
802
+ return as("directive", stat[1][1]);
803
+ return stat;
804
+ case "num":
805
+ case "regexp":
806
+ case "operator":
807
+ case "atom":
808
+ return simple_statement();
809
+
810
+ case "name":
811
+ return is_token(peek(), "punc", ":")
812
+ ? labeled_statement(prog1(S.token.value, next, next))
813
+ : simple_statement();
814
+
815
+ case "punc":
816
+ switch (S.token.value) {
817
+ case "{":
818
+ return as("block", block_());
819
+ case "[":
820
+ case "(":
821
+ return simple_statement();
822
+ case ";":
823
+ next();
824
+ return as("block");
825
+ default:
826
+ unexpected();
827
+ }
828
+
829
+ case "keyword":
830
+ switch (prog1(S.token.value, next)) {
831
+ case "break":
832
+ return break_cont("break");
833
+
834
+ case "continue":
835
+ return break_cont("continue");
836
+
837
+ case "debugger":
838
+ semicolon();
839
+ return as("debugger");
840
+
841
+ case "do":
842
+ return (function(body){
843
+ expect_token("keyword", "while");
844
+ return as("do", prog1(parenthesised, semicolon), body);
845
+ })(in_loop(statement));
846
+
847
+ case "for":
848
+ return for_();
849
+
850
+ case "function":
851
+ return function_(true);
852
+
853
+ case "if":
854
+ return if_();
855
+
856
+ case "return":
857
+ if (S.in_function == 0)
858
+ croak("'return' outside of function");
859
+ return as("return",
860
+ is("punc", ";")
861
+ ? (next(), null)
862
+ : can_insert_semicolon()
863
+ ? null
864
+ : prog1(expression, semicolon));
865
+
866
+ case "switch":
867
+ return as("switch", parenthesised(), switch_block_());
868
+
869
+ case "throw":
870
+ if (S.token.nlb)
871
+ croak("Illegal newline after 'throw'");
872
+ return as("throw", prog1(expression, semicolon));
873
+
874
+ case "try":
875
+ return try_();
876
+
877
+ case "var":
878
+ return prog1(var_, semicolon);
879
+
880
+ case "const":
881
+ return prog1(const_, semicolon);
882
+
883
+ case "while":
884
+ return as("while", parenthesised(), in_loop(statement));
885
+
886
+ case "with":
887
+ return as("with", parenthesised(), statement());
888
+
889
+ default:
890
+ unexpected();
891
+ }
892
+ }
893
+ });
894
+
895
+ function labeled_statement(label) {
896
+ S.labels.push(label);
897
+ var start = S.token, stat = statement();
898
+ if (exigent_mode && !HOP(STATEMENTS_WITH_LABELS, stat[0]))
899
+ unexpected(start);
900
+ S.labels.pop();
901
+ return as("label", label, stat);
902
+ };
903
+
904
+ function simple_statement() {
905
+ return as("stat", prog1(expression, semicolon));
906
+ };
907
+
908
+ function break_cont(type) {
909
+ var name;
910
+ if (!can_insert_semicolon()) {
911
+ name = is("name") ? S.token.value : null;
912
+ }
913
+ if (name != null) {
914
+ next();
915
+ if (!member(name, S.labels))
916
+ croak("Label " + name + " without matching loop or statement");
917
+ }
918
+ else if (S.in_loop == 0)
919
+ croak(type + " not inside a loop or switch");
920
+ semicolon();
921
+ return as(type, name);
922
+ };
923
+
924
+ function for_() {
925
+ expect("(");
926
+ var init = null;
927
+ if (!is("punc", ";")) {
928
+ init = is("keyword", "var")
929
+ ? (next(), var_(true))
930
+ : expression(true, true);
931
+ if (is("operator", "in")) {
932
+ if (init[0] == "var" && init[1].length > 1)
933
+ croak("Only one variable declaration allowed in for..in loop");
934
+ return for_in(init);
935
+ }
936
+ }
937
+ return regular_for(init);
938
+ };
939
+
940
+ function regular_for(init) {
941
+ expect(";");
942
+ var test = is("punc", ";") ? null : expression();
943
+ expect(";");
944
+ var step = is("punc", ")") ? null : expression();
945
+ expect(")");
946
+ return as("for", init, test, step, in_loop(statement));
947
+ };
948
+
949
+ function for_in(init) {
950
+ var lhs = init[0] == "var" ? as("name", init[1][0]) : init;
951
+ next();
952
+ var obj = expression();
953
+ expect(")");
954
+ return as("for-in", init, lhs, obj, in_loop(statement));
955
+ };
956
+
957
+ var function_ = function(in_statement) {
958
+ var name = is("name") ? prog1(S.token.value, next) : null;
959
+ if (in_statement && !name)
960
+ unexpected();
961
+ expect("(");
962
+ return as(in_statement ? "defun" : "function",
963
+ name,
964
+ // arguments
965
+ (function(first, a){
966
+ while (!is("punc", ")")) {
967
+ if (first) first = false; else expect(",");
968
+ if (!is("name")) unexpected();
969
+ a.push(S.token.value);
970
+ next();
971
+ }
972
+ next();
973
+ return a;
974
+ })(true, []),
975
+ // body
976
+ (function(){
977
+ ++S.in_function;
978
+ var loop = S.in_loop;
979
+ S.in_directives = true;
980
+ S.in_loop = 0;
981
+ var a = block_();
982
+ --S.in_function;
983
+ S.in_loop = loop;
984
+ return a;
985
+ })());
986
+ };
987
+
988
+ function if_() {
989
+ var cond = parenthesised(), body = statement(), belse;
990
+ if (is("keyword", "else")) {
991
+ next();
992
+ belse = statement();
993
+ }
994
+ return as("if", cond, body, belse);
995
+ };
996
+
997
+ function block_() {
998
+ expect("{");
999
+ var a = [];
1000
+ while (!is("punc", "}")) {
1001
+ if (is("eof")) unexpected();
1002
+ a.push(statement());
1003
+ }
1004
+ next();
1005
+ return a;
1006
+ };
1007
+
1008
+ var switch_block_ = curry(in_loop, function(){
1009
+ expect("{");
1010
+ var a = [], cur = null;
1011
+ while (!is("punc", "}")) {
1012
+ if (is("eof")) unexpected();
1013
+ if (is("keyword", "case")) {
1014
+ next();
1015
+ cur = [];
1016
+ a.push([ expression(), cur ]);
1017
+ expect(":");
1018
+ }
1019
+ else if (is("keyword", "default")) {
1020
+ next();
1021
+ expect(":");
1022
+ cur = [];
1023
+ a.push([ null, cur ]);
1024
+ }
1025
+ else {
1026
+ if (!cur) unexpected();
1027
+ cur.push(statement());
1028
+ }
1029
+ }
1030
+ next();
1031
+ return a;
1032
+ });
1033
+
1034
+ function try_() {
1035
+ var body = block_(), bcatch, bfinally;
1036
+ if (is("keyword", "catch")) {
1037
+ next();
1038
+ expect("(");
1039
+ if (!is("name"))
1040
+ croak("Name expected");
1041
+ var name = S.token.value;
1042
+ next();
1043
+ expect(")");
1044
+ bcatch = [ name, block_() ];
1045
+ }
1046
+ if (is("keyword", "finally")) {
1047
+ next();
1048
+ bfinally = block_();
1049
+ }
1050
+ if (!bcatch && !bfinally)
1051
+ croak("Missing catch/finally blocks");
1052
+ return as("try", body, bcatch, bfinally);
1053
+ };
1054
+
1055
+ function vardefs(no_in) {
1056
+ var a = [];
1057
+ for (;;) {
1058
+ if (!is("name"))
1059
+ unexpected();
1060
+ var name = S.token.value;
1061
+ next();
1062
+ if (is("operator", "=")) {
1063
+ next();
1064
+ a.push([ name, expression(false, no_in) ]);
1065
+ } else {
1066
+ a.push([ name ]);
1067
+ }
1068
+ if (!is("punc", ","))
1069
+ break;
1070
+ next();
1071
+ }
1072
+ return a;
1073
+ };
1074
+
1075
+ function var_(no_in) {
1076
+ return as("var", vardefs(no_in));
1077
+ };
1078
+
1079
+ function const_() {
1080
+ return as("const", vardefs());
1081
+ };
1082
+
1083
+ function new_() {
1084
+ var newexp = expr_atom(false), args;
1085
+ if (is("punc", "(")) {
1086
+ next();
1087
+ args = expr_list(")");
1088
+ } else {
1089
+ args = [];
1090
+ }
1091
+ return subscripts(as("new", newexp, args), true);
1092
+ };
1093
+
1094
+ var expr_atom = maybe_embed_tokens(function(allow_calls) {
1095
+ if (is("operator", "new")) {
1096
+ next();
1097
+ return new_();
1098
+ }
1099
+ if (is("punc")) {
1100
+ switch (S.token.value) {
1101
+ case "(":
1102
+ next();
1103
+ return subscripts(prog1(expression, curry(expect, ")")), allow_calls);
1104
+ case "[":
1105
+ next();
1106
+ return subscripts(array_(), allow_calls);
1107
+ case "{":
1108
+ next();
1109
+ return subscripts(object_(), allow_calls);
1110
+ }
1111
+ unexpected();
1112
+ }
1113
+ if (is("keyword", "function")) {
1114
+ next();
1115
+ return subscripts(function_(false), allow_calls);
1116
+ }
1117
+ if (HOP(ATOMIC_START_TOKEN, S.token.type)) {
1118
+ var atom = S.token.type == "regexp"
1119
+ ? as("regexp", S.token.value[0], S.token.value[1])
1120
+ : as(S.token.type, S.token.value);
1121
+ return subscripts(prog1(atom, next), allow_calls);
1122
+ }
1123
+ unexpected();
1124
+ });
1125
+
1126
+ function expr_list(closing, allow_trailing_comma, allow_empty) {
1127
+ var first = true, a = [];
1128
+ while (!is("punc", closing)) {
1129
+ if (first) first = false; else expect(",");
1130
+ if (allow_trailing_comma && is("punc", closing)) break;
1131
+ if (is("punc", ",") && allow_empty) {
1132
+ a.push([ "atom", "undefined" ]);
1133
+ } else {
1134
+ a.push(expression(false));
1135
+ }
1136
+ }
1137
+ next();
1138
+ return a;
1139
+ };
1140
+
1141
+ function array_() {
1142
+ return as("array", expr_list("]", !exigent_mode, true));
1143
+ };
1144
+
1145
+ function object_() {
1146
+ var first = true, a = [];
1147
+ while (!is("punc", "}")) {
1148
+ if (first) first = false; else expect(",");
1149
+ if (!exigent_mode && is("punc", "}"))
1150
+ // allow trailing comma
1151
+ break;
1152
+ var type = S.token.type;
1153
+ var name = as_property_name();
1154
+ if (type == "name" && (name == "get" || name == "set") && !is("punc", ":")) {
1155
+ a.push([ as_name(), function_(false), name ]);
1156
+ } else {
1157
+ expect(":");
1158
+ a.push([ name, expression(false) ]);
1159
+ }
1160
+ // FIXME [!!] Line not in original parse-js,
1161
+ // added to be able to warn about unquoted
1162
+ // keyword properties
1163
+ a[a.length - 1].type = type;
1164
+ }
1165
+ next();
1166
+ return as("object", a);
1167
+ };
1168
+
1169
+ function as_property_name() {
1170
+ switch (S.token.type) {
1171
+ case "num":
1172
+ case "string":
1173
+ return prog1(S.token.value, next);
1174
+ }
1175
+ return as_name();
1176
+ };
1177
+
1178
+ function as_name() {
1179
+ switch (S.token.type) {
1180
+ case "name":
1181
+ case "operator":
1182
+ case "keyword":
1183
+ case "atom":
1184
+ return prog1(S.token.value, next);
1185
+ default:
1186
+ unexpected();
1187
+ }
1188
+ };
1189
+
1190
+ function subscripts(expr, allow_calls) {
1191
+ if (is("punc", ".")) {
1192
+ next();
1193
+ return subscripts(as("dot", expr, as_name()), allow_calls);
1194
+ }
1195
+ if (is("punc", "[")) {
1196
+ next();
1197
+ return subscripts(as("sub", expr, prog1(expression, curry(expect, "]"))), allow_calls);
1198
+ }
1199
+ if (allow_calls && is("punc", "(")) {
1200
+ next();
1201
+ return subscripts(as("call", expr, expr_list(")")), true);
1202
+ }
1203
+ return expr;
1204
+ };
1205
+
1206
+ function maybe_unary(allow_calls) {
1207
+ if (is("operator") && HOP(UNARY_PREFIX, S.token.value)) {
1208
+ return make_unary("unary-prefix",
1209
+ prog1(S.token.value, next),
1210
+ maybe_unary(allow_calls));
1211
+ }
1212
+ var val = expr_atom(allow_calls);
1213
+ while (is("operator") && HOP(UNARY_POSTFIX, S.token.value) && !S.token.nlb) {
1214
+ val = make_unary("unary-postfix", S.token.value, val);
1215
+ next();
1216
+ }
1217
+ return val;
1218
+ };
1219
+
1220
+ function make_unary(tag, op, expr) {
1221
+ if ((op == "++" || op == "--") && !is_assignable(expr))
1222
+ croak("Invalid use of " + op + " operator");
1223
+ return as(tag, op, expr);
1224
+ };
1225
+
1226
+ function expr_op(left, min_prec, no_in) {
1227
+ var op = is("operator") ? S.token.value : null;
1228
+ if (op && op == "in" && no_in) op = null;
1229
+ var prec = op != null ? PRECEDENCE[op] : null;
1230
+ if (prec != null && prec > min_prec) {
1231
+ next();
1232
+ var right = expr_op(maybe_unary(true), prec, no_in);
1233
+ return expr_op(as("binary", op, left, right), min_prec, no_in);
1234
+ }
1235
+ return left;
1236
+ };
1237
+
1238
+ function expr_ops(no_in) {
1239
+ return expr_op(maybe_unary(true), 0, no_in);
1240
+ };
1241
+
1242
+ function maybe_conditional(no_in) {
1243
+ var expr = expr_ops(no_in);
1244
+ if (is("operator", "?")) {
1245
+ next();
1246
+ var yes = expression(false);
1247
+ expect(":");
1248
+ return as("conditional", expr, yes, expression(false, no_in));
1249
+ }
1250
+ return expr;
1251
+ };
1252
+
1253
+ function is_assignable(expr) {
1254
+ if (!exigent_mode) return true;
1255
+ switch (expr[0]+"") {
1256
+ case "dot":
1257
+ case "sub":
1258
+ case "new":
1259
+ case "call":
1260
+ return true;
1261
+ case "name":
1262
+ return expr[1] != "this";
1263
+ }
1264
+ };
1265
+
1266
+ function maybe_assign(no_in) {
1267
+ var left = maybe_conditional(no_in), val = S.token.value;
1268
+ if (is("operator") && HOP(ASSIGNMENT, val)) {
1269
+ if (is_assignable(left)) {
1270
+ next();
1271
+ return as("assign", ASSIGNMENT[val], left, maybe_assign(no_in));
1272
+ }
1273
+ croak("Invalid assignment");
1274
+ }
1275
+ return left;
1276
+ };
1277
+
1278
+ var expression = maybe_embed_tokens(function(commas, no_in) {
1279
+ if (arguments.length == 0)
1280
+ commas = true;
1281
+ var expr = maybe_assign(no_in);
1282
+ if (commas && is("punc", ",")) {
1283
+ next();
1284
+ return as("seq", expr, expression(true, no_in));
1285
+ }
1286
+ return expr;
1287
+ });
1288
+
1289
+ function in_loop(cont) {
1290
+ try {
1291
+ ++S.in_loop;
1292
+ return cont();
1293
+ } finally {
1294
+ --S.in_loop;
1295
+ }
1296
+ };
1297
+
1298
+ return as("toplevel", (function(a){
1299
+ while (!is("eof"))
1300
+ a.push(statement());
1301
+ return a;
1302
+ })([]));
1303
+
1304
+ };
1305
+
1306
+ /* -----[ Utilities ]----- */
1307
+
1308
+ function curry(f) {
1309
+ var args = slice(arguments, 1);
1310
+ return function() { return f.apply(this, args.concat(slice(arguments))); };
1311
+ };
1312
+
1313
+ function prog1(ret) {
1314
+ if (ret instanceof Function)
1315
+ ret = ret();
1316
+ for (var i = 1, n = arguments.length; --n > 0; ++i)
1317
+ arguments[i]();
1318
+ return ret;
1319
+ };
1320
+
1321
+ function array_to_hash(a) {
1322
+ var ret = {};
1323
+ for (var i = 0; i < a.length; ++i)
1324
+ ret[a[i]] = true;
1325
+ return ret;
1326
+ };
1327
+
1328
+ function slice(a, start) {
1329
+ return Array.prototype.slice.call(a, start || 0);
1330
+ };
1331
+
1332
+ function characters(str) {
1333
+ return str.split("");
1334
+ };
1335
+
1336
+ function member(name, array) {
1337
+ for (var i = array.length; --i >= 0;)
1338
+ if (array[i] == name)
1339
+ return true;
1340
+ return false;
1341
+ };
1342
+
1343
+ function HOP(obj, prop) {
1344
+ return Object.prototype.hasOwnProperty.call(obj, prop);
1345
+ };
1346
+
1347
+ var warn = function() {};
1348
+
1349
+ /* -----[ Exports ]----- */
1350
+
1351
+ exports.tokenizer = tokenizer;
1352
+ exports.parse = parse;
1353
+ exports.slice = slice;
1354
+ exports.curry = curry;
1355
+ exports.member = member;
1356
+ exports.array_to_hash = array_to_hash;
1357
+ exports.PRECEDENCE = PRECEDENCE;
1358
+ exports.KEYWORDS_ATOM = KEYWORDS_ATOM;
1359
+ exports.RESERVED_WORDS = RESERVED_WORDS;
1360
+ exports.KEYWORDS = KEYWORDS;
1361
+ exports.ATOMIC_START_TOKEN = ATOMIC_START_TOKEN;
1362
+ exports.OPERATORS = OPERATORS;
1363
+ exports.is_alphanumeric_char = is_alphanumeric_char;
1364
+ exports.is_identifier_start = is_identifier_start;
1365
+ exports.is_identifier_char = is_identifier_char;
1366
+ exports.set_logger = function(logger) {
1367
+ warn = logger;
1368
+ };
1369
+
1370
+ // Local variables:
1371
+ // js-indent-level: 8
1372
+ // End: