johnson 1.2.0 → 2.0.0.pre0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (782) hide show
  1. data/CHANGELOG.rdoc +8 -0
  2. data/Manifest.txt +762 -48
  3. data/README.rdoc +2 -1
  4. data/Rakefile +90 -18
  5. data/ext/spidermonkey/conversions.c +9 -2
  6. data/ext/spidermonkey/ruby_land_proxy.c +1 -1
  7. data/ext/spidermonkey/runtime.h +1 -1
  8. data/ext/tracemonkey/context.cc +125 -0
  9. data/ext/tracemonkey/context.h +19 -0
  10. data/ext/tracemonkey/conversions.cc +365 -0
  11. data/ext/tracemonkey/conversions.h +32 -0
  12. data/ext/tracemonkey/debugger.cc +234 -0
  13. data/ext/tracemonkey/debugger.h +10 -0
  14. data/ext/tracemonkey/extconf.rb +37 -0
  15. data/ext/tracemonkey/extensions.cc +37 -0
  16. data/ext/tracemonkey/extensions.h +12 -0
  17. data/ext/tracemonkey/global.cc +40 -0
  18. data/ext/tracemonkey/global.h +11 -0
  19. data/ext/tracemonkey/idhash.cc +16 -0
  20. data/ext/tracemonkey/idhash.h +8 -0
  21. data/ext/tracemonkey/immutable_node.cc +1199 -0
  22. data/ext/tracemonkey/immutable_node.cc.erb +559 -0
  23. data/ext/tracemonkey/immutable_node.h +22 -0
  24. data/ext/tracemonkey/jroot.h +215 -0
  25. data/ext/tracemonkey/js_land_proxy.cc +620 -0
  26. data/ext/tracemonkey/js_land_proxy.h +20 -0
  27. data/ext/tracemonkey/ruby_land_proxy.cc +618 -0
  28. data/ext/tracemonkey/ruby_land_proxy.h +38 -0
  29. data/ext/tracemonkey/runtime.cc +454 -0
  30. data/ext/tracemonkey/runtime.h +27 -0
  31. data/ext/tracemonkey/split_global.cc +392 -0
  32. data/ext/tracemonkey/split_global.h +11 -0
  33. data/ext/tracemonkey/tracemonkey.cc +23 -0
  34. data/ext/tracemonkey/tracemonkey.h +32 -0
  35. data/lib/johnson.rb +12 -4
  36. data/lib/johnson/error.rb +5 -0
  37. data/lib/johnson/js/prelude.js +16 -1
  38. data/lib/johnson/parser.rb +2 -1
  39. data/lib/johnson/runtime.rb +87 -26
  40. data/lib/johnson/spidermonkey/runtime.rb +7 -16
  41. data/lib/johnson/tracemonkey.rb +13 -0
  42. data/lib/johnson/tracemonkey/context.rb +10 -0
  43. data/lib/johnson/tracemonkey/debugger.rb +67 -0
  44. data/lib/johnson/tracemonkey/immutable_node.rb +282 -0
  45. data/lib/johnson/tracemonkey/js_land_proxy.rb +64 -0
  46. data/lib/johnson/tracemonkey/mutable_tree_visitor.rb +242 -0
  47. data/lib/johnson/tracemonkey/ruby_land_proxy.rb +17 -0
  48. data/lib/johnson/tracemonkey/runtime.rb +80 -0
  49. data/test/{johnson_test.rb → generic/johnson_test.rb} +1 -1
  50. data/test/{parser_test.rb → generic/parser_test.rb} +1 -1
  51. data/test/helper.rb +23 -4
  52. data/test/johnson/{browser_test.rb → generic/browser_test.rb} +1 -1
  53. data/test/johnson/{conversions → generic/conversions}/array_test.rb +1 -1
  54. data/test/johnson/{conversions → generic/conversions}/boolean_test.rb +1 -1
  55. data/test/johnson/{conversions → generic/conversions}/callable_test.rb +1 -1
  56. data/test/johnson/{conversions → generic/conversions}/file_test.rb +1 -1
  57. data/test/johnson/generic/conversions/helper.rb +1 -0
  58. data/test/johnson/{conversions → generic/conversions}/nil_test.rb +1 -1
  59. data/test/johnson/{conversions → generic/conversions}/number_test.rb +1 -1
  60. data/test/johnson/{conversions → generic/conversions}/regexp_test.rb +1 -1
  61. data/test/johnson/{conversions → generic/conversions}/string_test.rb +1 -1
  62. data/test/johnson/{conversions → generic/conversions}/struct_test.rb +1 -1
  63. data/test/johnson/{conversions → generic/conversions}/symbol_test.rb +1 -1
  64. data/test/johnson/{conversions → generic/conversions}/thread_test.rb +1 -1
  65. data/test/johnson/{custom_conversions_test.rb → generic/custom_conversions_test.rb} +1 -1
  66. data/test/johnson/generic/default_test.rb +12 -0
  67. data/test/johnson/{error_test.rb → generic/error_test.rb} +1 -1
  68. data/test/johnson/{extensions_test.rb → generic/extensions_test.rb} +1 -1
  69. data/test/johnson/generic/helper.rb +1 -0
  70. data/test/johnson/{nodes → generic/nodes}/array_literal_test.rb +1 -1
  71. data/test/johnson/{nodes → generic/nodes}/array_node_test.rb +1 -1
  72. data/test/johnson/{nodes → generic/nodes}/binary_node_test.rb +1 -1
  73. data/test/johnson/{nodes → generic/nodes}/bracket_access_test.rb +1 -1
  74. data/test/johnson/{nodes → generic/nodes}/delete_test.rb +1 -1
  75. data/test/johnson/{nodes → generic/nodes}/do_while_test.rb +1 -1
  76. data/test/johnson/{nodes → generic/nodes}/dot_accessor_test.rb +1 -1
  77. data/test/johnson/generic/nodes/export_test.rb +11 -0
  78. data/test/johnson/{nodes → generic/nodes}/for_test.rb +1 -1
  79. data/test/johnson/{nodes → generic/nodes}/function_test.rb +1 -1
  80. data/test/johnson/generic/nodes/helper.rb +1 -0
  81. data/test/johnson/{nodes → generic/nodes}/if_test.rb +16 -6
  82. data/test/johnson/generic/nodes/import_test.rb +15 -0
  83. data/test/johnson/{nodes → generic/nodes}/label_test.rb +1 -1
  84. data/test/johnson/{nodes → generic/nodes}/let_test.rb +1 -1
  85. data/test/johnson/{nodes → generic/nodes}/object_literal_test.rb +1 -1
  86. data/test/johnson/{nodes → generic/nodes}/return_test.rb +1 -1
  87. data/test/johnson/{nodes → generic/nodes}/semi_test.rb +1 -1
  88. data/test/johnson/{nodes → generic/nodes}/switch_test.rb +1 -1
  89. data/test/johnson/{nodes → generic/nodes}/ternary_test.rb +1 -1
  90. data/test/johnson/{nodes → generic/nodes}/throw_test.rb +1 -1
  91. data/test/johnson/{nodes → generic/nodes}/try_node_test.rb +36 -6
  92. data/test/johnson/{nodes → generic/nodes}/typeof_test.rb +1 -1
  93. data/test/johnson/{nodes → generic/nodes}/unary_node_test.rb +1 -1
  94. data/test/johnson/{nodes → generic/nodes}/void_test.rb +1 -1
  95. data/test/johnson/{nodes → generic/nodes}/while_test.rb +1 -1
  96. data/test/johnson/{nodes → generic/nodes}/with_test.rb +1 -1
  97. data/test/johnson/{prelude_test.rb → generic/prelude_test.rb} +1 -1
  98. data/test/johnson/{runtime_test.rb → generic/runtime_test.rb} +3 -6
  99. data/test/johnson/generic/version_test.rb +13 -0
  100. data/test/johnson/{visitors → generic/visitors}/dot_visitor_test.rb +1 -1
  101. data/test/johnson/{visitors → generic/visitors}/enumerating_visitor_test.rb +1 -1
  102. data/test/johnson/generic/visitors/helper.rb +1 -0
  103. data/test/johnson/spidermonkey/js_land_proxy_test.rb +1 -5
  104. data/test/johnson/spidermonkey/ruby_land_proxy_test.rb +11 -7
  105. data/test/johnson/tracemonkey/context_test.rb +21 -0
  106. data/test/johnson/tracemonkey/immutable_node_test.rb +34 -0
  107. data/test/johnson/tracemonkey/js_land_proxy_test.rb +273 -0
  108. data/test/johnson/tracemonkey/ruby_land_proxy_test.rb +274 -0
  109. data/test/johnson/tracemonkey/runtime_test.rb +41 -0
  110. data/test/johnson/tracemonkey/split_global_test.rb +32 -0
  111. data/vendor/spidermonkey/js.pkg +2 -0
  112. data/vendor/tracemonkey/Makefile.in +668 -0
  113. data/vendor/tracemonkey/Makefile.ref +483 -0
  114. data/vendor/tracemonkey/README.html +54 -0
  115. data/vendor/tracemonkey/SpiderMonkey.rsp +11 -0
  116. data/vendor/tracemonkey/Y.js +19 -0
  117. data/vendor/tracemonkey/aclocal.m4 +9 -0
  118. data/vendor/tracemonkey/bench.sh +5 -0
  119. data/vendor/tracemonkey/build/autoconf/acoutput-fast.pl +202 -0
  120. data/vendor/tracemonkey/build/autoconf/altoptions.m4 +154 -0
  121. data/vendor/tracemonkey/build/autoconf/config.guess +1537 -0
  122. data/vendor/tracemonkey/build/autoconf/config.sub +1595 -0
  123. data/vendor/tracemonkey/build/autoconf/install-sh +119 -0
  124. data/vendor/tracemonkey/build/autoconf/make-makefile +315 -0
  125. data/vendor/tracemonkey/build/autoconf/match-dir.sh +101 -0
  126. data/vendor/tracemonkey/build/autoconf/moznbytetype.m4 +136 -0
  127. data/vendor/tracemonkey/build/autoconf/nspr.m4 +82 -0
  128. data/vendor/tracemonkey/build/autoconf/pkg.m4 +59 -0
  129. data/vendor/tracemonkey/build/autoconf/update-makefile.sh +118 -0
  130. data/vendor/tracemonkey/build/cygwin-wrapper +75 -0
  131. data/vendor/tracemonkey/build/hcc +111 -0
  132. data/vendor/tracemonkey/build/hcpp +155 -0
  133. data/vendor/tracemonkey/build/unix/mddepend.pl +165 -0
  134. data/vendor/tracemonkey/build/unix/uniq.pl +63 -0
  135. data/vendor/tracemonkey/build/win32/pgomerge.py +40 -0
  136. data/vendor/tracemonkey/builtins.tbl +91 -0
  137. data/vendor/tracemonkey/call.js +13 -0
  138. data/vendor/tracemonkey/config.mk +206 -0
  139. data/vendor/tracemonkey/config/Makefile.in +106 -0
  140. data/vendor/tracemonkey/config/Moz/Milestone.pm +232 -0
  141. data/vendor/tracemonkey/config/autoconf.mk.in +362 -0
  142. data/vendor/tracemonkey/config/check-sync-dirs.py +103 -0
  143. data/vendor/tracemonkey/config/check-sync-exceptions +7 -0
  144. data/vendor/tracemonkey/config/config.mk +881 -0
  145. data/vendor/tracemonkey/config/fastcwd.pl +66 -0
  146. data/vendor/tracemonkey/config/gcc_hidden.h +2 -0
  147. data/vendor/tracemonkey/config/insure.mk +53 -0
  148. data/vendor/tracemonkey/config/make-system-wrappers.pl +59 -0
  149. data/vendor/tracemonkey/config/milestone.pl +112 -0
  150. data/vendor/tracemonkey/config/milestone.txt +13 -0
  151. data/vendor/tracemonkey/config/mkdepend/Makefile.in +84 -0
  152. data/vendor/tracemonkey/config/mkdepend/cppsetup.c +233 -0
  153. data/vendor/tracemonkey/config/mkdepend/def.h +184 -0
  154. data/vendor/tracemonkey/config/mkdepend/ifparser.c +551 -0
  155. data/vendor/tracemonkey/config/mkdepend/ifparser.h +83 -0
  156. data/vendor/tracemonkey/config/mkdepend/imakemdep.h +733 -0
  157. data/vendor/tracemonkey/config/mkdepend/include.c +337 -0
  158. data/vendor/tracemonkey/config/mkdepend/main.c +860 -0
  159. data/vendor/tracemonkey/config/mkdepend/mkdepend.man +382 -0
  160. data/vendor/tracemonkey/config/mkdepend/parse.c +686 -0
  161. data/vendor/tracemonkey/config/mkdepend/pr.c +124 -0
  162. data/vendor/tracemonkey/config/nfspwd.pl +50 -0
  163. data/vendor/tracemonkey/config/nsinstall.c +481 -0
  164. data/vendor/tracemonkey/config/nsinstall.py +155 -0
  165. data/vendor/tracemonkey/config/pathsub.c +247 -0
  166. data/vendor/tracemonkey/config/pathsub.h +74 -0
  167. data/vendor/tracemonkey/config/preprocessor.pl +671 -0
  168. data/vendor/tracemonkey/config/revdepth-nt.pl +48 -0
  169. data/vendor/tracemonkey/config/revdepth.pl +51 -0
  170. data/vendor/tracemonkey/config/rules.mk +2310 -0
  171. data/vendor/tracemonkey/config/static-checking-config.mk +21 -0
  172. data/vendor/tracemonkey/config/static-checking.js +92 -0
  173. data/vendor/tracemonkey/config/string-format.js +61 -0
  174. data/vendor/tracemonkey/config/system-headers +1035 -0
  175. data/vendor/tracemonkey/config/version.mk +85 -0
  176. data/vendor/tracemonkey/config/version_win.pl +442 -0
  177. data/vendor/tracemonkey/configure +14183 -0
  178. data/vendor/tracemonkey/configure.in +5363 -0
  179. data/vendor/tracemonkey/correct.sh +23 -0
  180. data/vendor/tracemonkey/correct/check-3d-morph.js +55 -0
  181. data/vendor/tracemonkey/correct/check-3d-raytrace.js +445 -0
  182. data/vendor/tracemonkey/correct/check-access-binary-trees.js +52 -0
  183. data/vendor/tracemonkey/correct/check-access-fannkuch.js +66 -0
  184. data/vendor/tracemonkey/correct/check-access-nbody.js +171 -0
  185. data/vendor/tracemonkey/correct/check-access-nsieve.js +40 -0
  186. data/vendor/tracemonkey/correct/check-bitops-3bit-bits-in-byte.js +35 -0
  187. data/vendor/tracemonkey/correct/check-bitops-bits-in-byte.js +24 -0
  188. data/vendor/tracemonkey/correct/check-bitops-bitwise-and.js +29 -0
  189. data/vendor/tracemonkey/correct/check-bitops-nsieve-bits.js +40 -0
  190. data/vendor/tracemonkey/correct/check-controlflow-recursive.js +27 -0
  191. data/vendor/tracemonkey/correct/check-date-format-tofte.js +302 -0
  192. data/vendor/tracemonkey/correct/check-date-format-xparb.js +421 -0
  193. data/vendor/tracemonkey/correct/check-mont.js +119 -0
  194. data/vendor/tracemonkey/dtoa.c +3335 -0
  195. data/vendor/tracemonkey/editline/Makefile.in +55 -0
  196. data/vendor/tracemonkey/editline/Makefile.ref +143 -0
  197. data/vendor/tracemonkey/editline/README +83 -0
  198. data/vendor/tracemonkey/editline/editline.3 +175 -0
  199. data/vendor/tracemonkey/editline/editline.c +1371 -0
  200. data/vendor/tracemonkey/editline/editline.h +135 -0
  201. data/vendor/tracemonkey/editline/sysunix.c +182 -0
  202. data/vendor/tracemonkey/editline/unix.h +82 -0
  203. data/vendor/tracemonkey/if.js +13 -0
  204. data/vendor/tracemonkey/imacro_asm.js.in +396 -0
  205. data/vendor/tracemonkey/imacros.c.out +1034 -0
  206. data/vendor/tracemonkey/imacros.jsasm +770 -0
  207. data/vendor/tracemonkey/javascript-trace.d +73 -0
  208. data/vendor/tracemonkey/jitstats.tbl +55 -0
  209. data/vendor/tracemonkey/js-config.h.in +82 -0
  210. data/vendor/tracemonkey/js-config.in +111 -0
  211. data/vendor/tracemonkey/js.mdp +0 -0
  212. data/vendor/tracemonkey/js.msg +312 -0
  213. data/vendor/tracemonkey/js3240.rc +79 -0
  214. data/vendor/tracemonkey/jsOS240.def +654 -0
  215. data/vendor/tracemonkey/jsapi.cpp +6005 -0
  216. data/vendor/tracemonkey/jsapi.h +2727 -0
  217. data/vendor/tracemonkey/jsarena.cpp +450 -0
  218. data/vendor/tracemonkey/jsarena.h +318 -0
  219. data/vendor/tracemonkey/jsarray.cpp +3664 -0
  220. data/vendor/tracemonkey/jsarray.h +238 -0
  221. data/vendor/tracemonkey/jsatom.cpp +1244 -0
  222. data/vendor/tracemonkey/jsatom.h +493 -0
  223. data/vendor/tracemonkey/jsbit.h +249 -0
  224. data/vendor/tracemonkey/jsbool.cpp +184 -0
  225. data/vendor/tracemonkey/jsbool.h +88 -0
  226. data/vendor/tracemonkey/jsbuiltins.cpp +415 -0
  227. data/vendor/tracemonkey/jsbuiltins.h +456 -0
  228. data/vendor/tracemonkey/jsclist.h +139 -0
  229. data/vendor/tracemonkey/jscntxt.cpp +1816 -0
  230. data/vendor/tracemonkey/jscntxt.h +1541 -0
  231. data/vendor/tracemonkey/jscompat.h +57 -0
  232. data/vendor/tracemonkey/jsconfig.mk +181 -0
  233. data/vendor/tracemonkey/jscpucfg.cpp +194 -0
  234. data/vendor/tracemonkey/jscpucfg.h +91 -0
  235. data/vendor/tracemonkey/jsdate.cpp +2465 -0
  236. data/vendor/tracemonkey/jsdate.h +129 -0
  237. data/vendor/tracemonkey/jsdbgapi.cpp +2017 -0
  238. data/vendor/tracemonkey/jsdbgapi.h +500 -0
  239. data/vendor/tracemonkey/jsdhash.cpp +876 -0
  240. data/vendor/tracemonkey/jsdhash.h +588 -0
  241. data/vendor/tracemonkey/jsdtoa.cpp +572 -0
  242. data/vendor/tracemonkey/jsdtoa.h +131 -0
  243. data/vendor/tracemonkey/jsdtracef.c +318 -0
  244. data/vendor/tracemonkey/jsdtracef.h +81 -0
  245. data/vendor/tracemonkey/jsemit.cpp +7292 -0
  246. data/vendor/tracemonkey/jsemit.h +802 -0
  247. data/vendor/tracemonkey/jsexn.cpp +1337 -0
  248. data/vendor/tracemonkey/jsexn.h +96 -0
  249. data/vendor/tracemonkey/jsfile.cpp +2747 -0
  250. data/vendor/tracemonkey/jsfile.h +56 -0
  251. data/vendor/tracemonkey/jsfile.msg +90 -0
  252. data/vendor/tracemonkey/jsfun.cpp +3089 -0
  253. data/vendor/tracemonkey/jsfun.h +366 -0
  254. data/vendor/tracemonkey/jsgc.cpp +3816 -0
  255. data/vendor/tracemonkey/jsgc.h +429 -0
  256. data/vendor/tracemonkey/jshash.cpp +477 -0
  257. data/vendor/tracemonkey/jshash.h +151 -0
  258. data/vendor/tracemonkey/jsify.pl +483 -0
  259. data/vendor/tracemonkey/jsinterp.cpp +7441 -0
  260. data/vendor/tracemonkey/jsinterp.h +666 -0
  261. data/vendor/tracemonkey/jsinvoke.cpp +42 -0
  262. data/vendor/tracemonkey/jsiter.cpp +1040 -0
  263. data/vendor/tracemonkey/jsiter.h +140 -0
  264. data/vendor/tracemonkey/jskeyword.tbl +124 -0
  265. data/vendor/tracemonkey/jskwgen.cpp +460 -0
  266. data/vendor/tracemonkey/jslibmath.h +69 -0
  267. data/vendor/tracemonkey/jslock.cpp +1512 -0
  268. data/vendor/tracemonkey/jslock.h +325 -0
  269. data/vendor/tracemonkey/jslocko.asm +60 -0
  270. data/vendor/tracemonkey/jslog2.cpp +111 -0
  271. data/vendor/tracemonkey/jslong.h +167 -0
  272. data/vendor/tracemonkey/jsmath.cpp +806 -0
  273. data/vendor/tracemonkey/jsmath.h +63 -0
  274. data/vendor/tracemonkey/jsnum.cpp +1374 -0
  275. data/vendor/tracemonkey/jsnum.h +280 -0
  276. data/vendor/tracemonkey/jsobj.cpp +6165 -0
  277. data/vendor/tracemonkey/jsobj.h +870 -0
  278. data/vendor/tracemonkey/json.cpp +1338 -0
  279. data/vendor/tracemonkey/json.h +108 -0
  280. data/vendor/tracemonkey/jsopcode.cpp +5484 -0
  281. data/vendor/tracemonkey/jsopcode.h +434 -0
  282. data/vendor/tracemonkey/jsopcode.tbl +591 -0
  283. data/vendor/tracemonkey/jsoplengen.cpp +121 -0
  284. data/vendor/tracemonkey/jsotypes.h +202 -0
  285. data/vendor/tracemonkey/jsparse.cpp +9257 -0
  286. data/vendor/tracemonkey/jsparse.h +900 -0
  287. data/vendor/tracemonkey/jsprf.cpp +1262 -0
  288. data/vendor/tracemonkey/jsprf.h +150 -0
  289. data/vendor/tracemonkey/jsproto.tbl +117 -0
  290. data/vendor/tracemonkey/jsprvtd.h +366 -0
  291. data/vendor/tracemonkey/jspubtd.h +585 -0
  292. data/vendor/tracemonkey/jsregexp.cpp +5051 -0
  293. data/vendor/tracemonkey/jsregexp.h +199 -0
  294. data/vendor/tracemonkey/jsreops.tbl +145 -0
  295. data/vendor/tracemonkey/jsscan.cpp +2040 -0
  296. data/vendor/tracemonkey/jsscan.h +467 -0
  297. data/vendor/tracemonkey/jsscope.cpp +1966 -0
  298. data/vendor/tracemonkey/jsscope.h +487 -0
  299. data/vendor/tracemonkey/jsscript.cpp +1932 -0
  300. data/vendor/tracemonkey/jsscript.h +345 -0
  301. data/vendor/tracemonkey/jsshell.msg +54 -0
  302. data/vendor/tracemonkey/jsstack.js +167 -0
  303. data/vendor/tracemonkey/jsstaticcheck.h +69 -0
  304. data/vendor/tracemonkey/jsstddef.h +87 -0
  305. data/vendor/tracemonkey/jsstdint.h +96 -0
  306. data/vendor/tracemonkey/jsstr.cpp +5277 -0
  307. data/vendor/tracemonkey/jsstr.h +702 -0
  308. data/vendor/tracemonkey/jstracer.cpp +10991 -0
  309. data/vendor/tracemonkey/jstracer.h +794 -0
  310. data/vendor/tracemonkey/jstypes.h +481 -0
  311. data/vendor/tracemonkey/jsutil.cpp +361 -0
  312. data/vendor/tracemonkey/jsutil.h +178 -0
  313. data/vendor/tracemonkey/jsversion.h +243 -0
  314. data/vendor/tracemonkey/jswince.asm +44 -0
  315. data/vendor/tracemonkey/jsxdrapi.cpp +800 -0
  316. data/vendor/tracemonkey/jsxdrapi.h +220 -0
  317. data/vendor/tracemonkey/jsxml.cpp +8327 -0
  318. data/vendor/tracemonkey/jsxml.h +305 -0
  319. data/vendor/tracemonkey/liveconnect/LiveConnect.dsp +157 -0
  320. data/vendor/tracemonkey/liveconnect/LiveConnectShell.dsp +120 -0
  321. data/vendor/tracemonkey/liveconnect/LiveConnectShell.dsw +44 -0
  322. data/vendor/tracemonkey/liveconnect/Makefile.in +105 -0
  323. data/vendor/tracemonkey/liveconnect/Makefile.ref +169 -0
  324. data/vendor/tracemonkey/liveconnect/README.html +712 -0
  325. data/vendor/tracemonkey/liveconnect/_jni/netscape_javascript_JSException.h +14 -0
  326. data/vendor/tracemonkey/liveconnect/_jni/netscape_javascript_JSObject.h +155 -0
  327. data/vendor/tracemonkey/liveconnect/classes/Makefile.in +89 -0
  328. data/vendor/tracemonkey/liveconnect/classes/Makefile.ref +57 -0
  329. data/vendor/tracemonkey/liveconnect/classes/netscape/Makefile.ref +47 -0
  330. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSException.java +140 -0
  331. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSObject.java +183 -0
  332. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSProxy.java +58 -0
  333. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSRunnable.java +70 -0
  334. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSUtil.java +59 -0
  335. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/Makefile.ref +53 -0
  336. data/vendor/tracemonkey/liveconnect/config/AIX4.1.mk +45 -0
  337. data/vendor/tracemonkey/liveconnect/config/AIX4.2.mk +45 -0
  338. data/vendor/tracemonkey/liveconnect/config/AIX4.3.mk +50 -0
  339. data/vendor/tracemonkey/liveconnect/config/HP-UXB.10.10.mk +43 -0
  340. data/vendor/tracemonkey/liveconnect/config/HP-UXB.10.20.mk +43 -0
  341. data/vendor/tracemonkey/liveconnect/config/HP-UXB.11.00.mk +43 -0
  342. data/vendor/tracemonkey/liveconnect/config/IRIX6.2.mk +43 -0
  343. data/vendor/tracemonkey/liveconnect/config/IRIX6.3.mk +43 -0
  344. data/vendor/tracemonkey/liveconnect/config/IRIX6.5.mk +43 -0
  345. data/vendor/tracemonkey/liveconnect/config/Linux_All.mk +73 -0
  346. data/vendor/tracemonkey/liveconnect/config/OSF1V4.0.mk +65 -0
  347. data/vendor/tracemonkey/liveconnect/config/OSF1V5.0.mk +62 -0
  348. data/vendor/tracemonkey/liveconnect/config/SunOS5.5.1.mk +55 -0
  349. data/vendor/tracemonkey/liveconnect/config/SunOS5.6.mk +39 -0
  350. data/vendor/tracemonkey/liveconnect/config/SunOS5.7.mk +39 -0
  351. data/vendor/tracemonkey/liveconnect/config/SunOS5.8.mk +39 -0
  352. data/vendor/tracemonkey/liveconnect/config/WINNT4.0.mk +53 -0
  353. data/vendor/tracemonkey/liveconnect/jsj.c +886 -0
  354. data/vendor/tracemonkey/liveconnect/jsj.msg +98 -0
  355. data/vendor/tracemonkey/liveconnect/jsj_JSObject.c +1377 -0
  356. data/vendor/tracemonkey/liveconnect/jsj_JavaArray.c +474 -0
  357. data/vendor/tracemonkey/liveconnect/jsj_JavaClass.c +737 -0
  358. data/vendor/tracemonkey/liveconnect/jsj_JavaMember.c +191 -0
  359. data/vendor/tracemonkey/liveconnect/jsj_JavaObject.c +1079 -0
  360. data/vendor/tracemonkey/liveconnect/jsj_JavaPackage.c +569 -0
  361. data/vendor/tracemonkey/liveconnect/jsj_array.c +207 -0
  362. data/vendor/tracemonkey/liveconnect/jsj_class.c +770 -0
  363. data/vendor/tracemonkey/liveconnect/jsj_convert.c +902 -0
  364. data/vendor/tracemonkey/liveconnect/jsj_field.c +421 -0
  365. data/vendor/tracemonkey/liveconnect/jsj_hash.c +488 -0
  366. data/vendor/tracemonkey/liveconnect/jsj_hash.h +161 -0
  367. data/vendor/tracemonkey/liveconnect/jsj_method.c +1825 -0
  368. data/vendor/tracemonkey/liveconnect/jsj_nodl.c +1 -0
  369. data/vendor/tracemonkey/liveconnect/jsj_private.h +677 -0
  370. data/vendor/tracemonkey/liveconnect/jsj_simpleapi.c +219 -0
  371. data/vendor/tracemonkey/liveconnect/jsj_utils.c +513 -0
  372. data/vendor/tracemonkey/liveconnect/jsjava.h +316 -0
  373. data/vendor/tracemonkey/liveconnect/netscape_javascript_JSObject.h +155 -0
  374. data/vendor/tracemonkey/liveconnect/nsCLiveconnect.cpp +785 -0
  375. data/vendor/tracemonkey/liveconnect/nsCLiveconnect.h +197 -0
  376. data/vendor/tracemonkey/liveconnect/nsCLiveconnectFactory.cpp +118 -0
  377. data/vendor/tracemonkey/liveconnect/nsCLiveconnectFactory.h +76 -0
  378. data/vendor/tracemonkey/liveconnect/nsILiveconnect.h +197 -0
  379. data/vendor/tracemonkey/liveconnect/nsISecureLiveconnect.h +94 -0
  380. data/vendor/tracemonkey/liveconnect/nsISecurityContext.h +136 -0
  381. data/vendor/tracemonkey/lock_SunOS.s +119 -0
  382. data/vendor/tracemonkey/mandelbrot-results.js +3 -0
  383. data/vendor/tracemonkey/math-partial-sums.js +32 -0
  384. data/vendor/tracemonkey/math-trace-tests.js +507 -0
  385. data/vendor/tracemonkey/md5.js +289 -0
  386. data/vendor/tracemonkey/nanojit/Assembler.cpp +1984 -0
  387. data/vendor/tracemonkey/nanojit/Assembler.h +375 -0
  388. data/vendor/tracemonkey/nanojit/Fragmento.cpp +651 -0
  389. data/vendor/tracemonkey/nanojit/Fragmento.h +237 -0
  390. data/vendor/tracemonkey/nanojit/LIR.cpp +2314 -0
  391. data/vendor/tracemonkey/nanojit/LIR.h +879 -0
  392. data/vendor/tracemonkey/nanojit/LIRopcode.tbl +252 -0
  393. data/vendor/tracemonkey/nanojit/Native.h +127 -0
  394. data/vendor/tracemonkey/nanojit/NativeARM.cpp +1742 -0
  395. data/vendor/tracemonkey/nanojit/NativeARM.h +844 -0
  396. data/vendor/tracemonkey/nanojit/NativeSparc.cpp +1130 -0
  397. data/vendor/tracemonkey/nanojit/NativeSparc.h +948 -0
  398. data/vendor/tracemonkey/nanojit/NativeThumb.cpp +1322 -0
  399. data/vendor/tracemonkey/nanojit/NativeThumb.h +525 -0
  400. data/vendor/tracemonkey/nanojit/Nativei386.cpp +1748 -0
  401. data/vendor/tracemonkey/nanojit/Nativei386.h +857 -0
  402. data/vendor/tracemonkey/nanojit/RegAlloc.cpp +183 -0
  403. data/vendor/tracemonkey/nanojit/RegAlloc.h +95 -0
  404. data/vendor/tracemonkey/nanojit/TraceTreeDrawer.cpp +306 -0
  405. data/vendor/tracemonkey/nanojit/TraceTreeDrawer.h +88 -0
  406. data/vendor/tracemonkey/nanojit/avmplus.cpp +56 -0
  407. data/vendor/tracemonkey/nanojit/avmplus.h +1016 -0
  408. data/vendor/tracemonkey/nanojit/nanojit.h +253 -0
  409. data/vendor/tracemonkey/perfect.js +39 -0
  410. data/vendor/tracemonkey/plify_jsdhash.sed +35 -0
  411. data/vendor/tracemonkey/prmjtime.cpp +869 -0
  412. data/vendor/tracemonkey/prmjtime.h +103 -0
  413. data/vendor/tracemonkey/ref-config/AIX4.1.mk +65 -0
  414. data/vendor/tracemonkey/ref-config/AIX4.2.mk +64 -0
  415. data/vendor/tracemonkey/ref-config/AIX4.3.mk +65 -0
  416. data/vendor/tracemonkey/ref-config/Darwin.mk +85 -0
  417. data/vendor/tracemonkey/ref-config/Darwin1.3.mk +81 -0
  418. data/vendor/tracemonkey/ref-config/Darwin1.4.mk +41 -0
  419. data/vendor/tracemonkey/ref-config/Darwin5.2.mk +81 -0
  420. data/vendor/tracemonkey/ref-config/Darwin5.3.mk +81 -0
  421. data/vendor/tracemonkey/ref-config/Darwin64.mk +72 -0
  422. data/vendor/tracemonkey/ref-config/HP-UXB.10.10.mk +77 -0
  423. data/vendor/tracemonkey/ref-config/HP-UXB.10.20.mk +77 -0
  424. data/vendor/tracemonkey/ref-config/HP-UXB.11.00.mk +80 -0
  425. data/vendor/tracemonkey/ref-config/IRIX.mk +87 -0
  426. data/vendor/tracemonkey/ref-config/IRIX5.3.mk +44 -0
  427. data/vendor/tracemonkey/ref-config/IRIX6.1.mk +44 -0
  428. data/vendor/tracemonkey/ref-config/IRIX6.2.mk +44 -0
  429. data/vendor/tracemonkey/ref-config/IRIX6.3.mk +44 -0
  430. data/vendor/tracemonkey/ref-config/IRIX6.5.mk +44 -0
  431. data/vendor/tracemonkey/ref-config/Linux_All.mk +105 -0
  432. data/vendor/tracemonkey/ref-config/Mac_OS10.0.mk +82 -0
  433. data/vendor/tracemonkey/ref-config/OSF1V4.0.mk +72 -0
  434. data/vendor/tracemonkey/ref-config/OSF1V5.0.mk +69 -0
  435. data/vendor/tracemonkey/ref-config/SunOS4.1.4.mk +101 -0
  436. data/vendor/tracemonkey/ref-config/SunOS5.10.mk +50 -0
  437. data/vendor/tracemonkey/ref-config/SunOS5.3.mk +91 -0
  438. data/vendor/tracemonkey/ref-config/SunOS5.4.mk +92 -0
  439. data/vendor/tracemonkey/ref-config/SunOS5.5.1.mk +44 -0
  440. data/vendor/tracemonkey/ref-config/SunOS5.5.mk +87 -0
  441. data/vendor/tracemonkey/ref-config/SunOS5.6.mk +89 -0
  442. data/vendor/tracemonkey/ref-config/SunOS5.7.mk +44 -0
  443. data/vendor/tracemonkey/ref-config/SunOS5.8.mk +44 -0
  444. data/vendor/tracemonkey/ref-config/SunOS5.9.mk +44 -0
  445. data/vendor/tracemonkey/ref-config/WINNT4.0.mk +118 -0
  446. data/vendor/tracemonkey/ref-config/WINNT5.0.mk +118 -0
  447. data/vendor/tracemonkey/ref-config/WINNT5.1.mk +118 -0
  448. data/vendor/tracemonkey/ref-config/WINNT5.2.mk +118 -0
  449. data/vendor/tracemonkey/ref-config/WINNT6.0.mk +118 -0
  450. data/vendor/tracemonkey/ref-config/dgux.mk +64 -0
  451. data/vendor/tracemonkey/resource.h +15 -0
  452. data/vendor/tracemonkey/rules.mk +206 -0
  453. data/vendor/tracemonkey/shell/Makefile.in +72 -0
  454. data/vendor/tracemonkey/shell/js.cpp +4719 -0
  455. data/vendor/tracemonkey/t/3d-cube.js +337 -0
  456. data/vendor/tracemonkey/t/3d-morph.js +54 -0
  457. data/vendor/tracemonkey/t/3d-raytrace.js +441 -0
  458. data/vendor/tracemonkey/t/access-binary-trees.js +50 -0
  459. data/vendor/tracemonkey/t/access-fannkuch.js +66 -0
  460. data/vendor/tracemonkey/t/access-nbody.js +169 -0
  461. data/vendor/tracemonkey/t/access-nsieve.js +38 -0
  462. data/vendor/tracemonkey/t/bitops-3bit-bits-in-byte.js +32 -0
  463. data/vendor/tracemonkey/t/bitops-bits-in-byte.js +21 -0
  464. data/vendor/tracemonkey/t/bitops-bitwise-and.js +28 -0
  465. data/vendor/tracemonkey/t/bitops-nsieve-bits.js +32 -0
  466. data/vendor/tracemonkey/t/controlflow-recursive.js +25 -0
  467. data/vendor/tracemonkey/t/crypto-aes.js +422 -0
  468. data/vendor/tracemonkey/t/crypto-md5.js +286 -0
  469. data/vendor/tracemonkey/t/crypto-sha1.js +224 -0
  470. data/vendor/tracemonkey/t/date-format-tofte.js +299 -0
  471. data/vendor/tracemonkey/t/date-format-xparb.js +417 -0
  472. data/vendor/tracemonkey/t/math-cordic.js +95 -0
  473. data/vendor/tracemonkey/t/math-partial-sums.js +33 -0
  474. data/vendor/tracemonkey/t/math-spectral-norm.js +51 -0
  475. data/vendor/tracemonkey/t/regexp-dna.js +1712 -0
  476. data/vendor/tracemonkey/t/string-base64.js +135 -0
  477. data/vendor/tracemonkey/t/string-fasta.js +85 -0
  478. data/vendor/tracemonkey/t/string-tagcloud.js +265 -0
  479. data/vendor/tracemonkey/t/string-unpack-code.js +68 -0
  480. data/vendor/tracemonkey/t/string-validate-input.js +89 -0
  481. data/vendor/tracemonkey/time.sh +13 -0
  482. data/vendor/tracemonkey/trace-test.js +5564 -0
  483. data/vendor/tracemonkey/v8/base.js +187 -0
  484. data/vendor/tracemonkey/v8/crypto.js +1689 -0
  485. data/vendor/tracemonkey/v8/deltablue.js +880 -0
  486. data/vendor/tracemonkey/v8/earley-boyer.js +4682 -0
  487. data/vendor/tracemonkey/v8/raytrace.js +3418 -0
  488. data/vendor/tracemonkey/v8/richards.js +539 -0
  489. data/vendor/tracemonkey/v8/run-crypto.js +44 -0
  490. data/vendor/tracemonkey/v8/run-deltablue.js +44 -0
  491. data/vendor/tracemonkey/v8/run-earley-boyer.js +44 -0
  492. data/vendor/tracemonkey/v8/run-raytrace.js +44 -0
  493. data/vendor/tracemonkey/v8/run-richards.js +44 -0
  494. data/vendor/tracemonkey/v8/run.js +49 -0
  495. data/vendor/tracemonkey/vprof/readme.txt +93 -0
  496. data/vendor/tracemonkey/vprof/vprof.cpp +360 -0
  497. data/vendor/tracemonkey/vprof/vprof.h +245 -0
  498. data/vendor/tracemonkey/xpconnect/Makefile.in +67 -0
  499. data/vendor/tracemonkey/xpconnect/crashtests/117307-1.html +20 -0
  500. data/vendor/tracemonkey/xpconnect/crashtests/193710.html +11 -0
  501. data/vendor/tracemonkey/xpconnect/crashtests/290162-1.html +5 -0
  502. data/vendor/tracemonkey/xpconnect/crashtests/326615-1.html +16 -0
  503. data/vendor/tracemonkey/xpconnect/crashtests/328553-1.html +13 -0
  504. data/vendor/tracemonkey/xpconnect/crashtests/346258-1.html +12 -0
  505. data/vendor/tracemonkey/xpconnect/crashtests/346512-1-frame1.xhtml +16 -0
  506. data/vendor/tracemonkey/xpconnect/crashtests/346512-1-frame2.xhtml +15 -0
  507. data/vendor/tracemonkey/xpconnect/crashtests/346512-1.xhtml +30 -0
  508. data/vendor/tracemonkey/xpconnect/crashtests/382133-1.html +3 -0
  509. data/vendor/tracemonkey/xpconnect/crashtests/386680-1.html +22 -0
  510. data/vendor/tracemonkey/xpconnect/crashtests/394810-1.html +4 -0
  511. data/vendor/tracemonkey/xpconnect/crashtests/400349-1.html +20 -0
  512. data/vendor/tracemonkey/xpconnect/crashtests/403356-1.html +13 -0
  513. data/vendor/tracemonkey/xpconnect/crashtests/418139-1.svg +22 -0
  514. data/vendor/tracemonkey/xpconnect/crashtests/420513-1.html +11 -0
  515. data/vendor/tracemonkey/xpconnect/crashtests/453935-1.html +37 -0
  516. data/vendor/tracemonkey/xpconnect/crashtests/462926.html +12 -0
  517. data/vendor/tracemonkey/xpconnect/crashtests/468552-1.html +18 -0
  518. data/vendor/tracemonkey/xpconnect/crashtests/471366-1.html +12 -0
  519. data/vendor/tracemonkey/xpconnect/crashtests/475185-1.html +13 -0
  520. data/vendor/tracemonkey/xpconnect/crashtests/475291-1.html +14 -0
  521. data/vendor/tracemonkey/xpconnect/crashtests/503286-1.html +23 -0
  522. data/vendor/tracemonkey/xpconnect/crashtests/crashtests.list +21 -0
  523. data/vendor/tracemonkey/xpconnect/idl/Makefile.in +78 -0
  524. data/vendor/tracemonkey/xpconnect/idl/XPCIDispatch.idl +51 -0
  525. data/vendor/tracemonkey/xpconnect/idl/mozIJSSubScriptLoader.idl +64 -0
  526. data/vendor/tracemonkey/xpconnect/idl/nsIActiveXSecurityPolicy.idl +67 -0
  527. data/vendor/tracemonkey/xpconnect/idl/nsIDispatchSupport.idl +119 -0
  528. data/vendor/tracemonkey/xpconnect/idl/nsIJSContextStack.idl +85 -0
  529. data/vendor/tracemonkey/xpconnect/idl/nsIJSRuntimeService.idl +51 -0
  530. data/vendor/tracemonkey/xpconnect/idl/nsIScriptError.idl +102 -0
  531. data/vendor/tracemonkey/xpconnect/idl/nsIScriptableInterfaces.idl +67 -0
  532. data/vendor/tracemonkey/xpconnect/idl/nsIXPCScriptNotify.idl +66 -0
  533. data/vendor/tracemonkey/xpconnect/idl/nsIXPCScriptable.idl +183 -0
  534. data/vendor/tracemonkey/xpconnect/idl/nsIXPCSecurityManager.idl +114 -0
  535. data/vendor/tracemonkey/xpconnect/idl/nsIXPConnect.idl +819 -0
  536. data/vendor/tracemonkey/xpconnect/idl/xpcIJSModuleLoader.idl +95 -0
  537. data/vendor/tracemonkey/xpconnect/idl/xpcIJSWeakReference.idl +49 -0
  538. data/vendor/tracemonkey/xpconnect/idl/xpccomponents.idl +254 -0
  539. data/vendor/tracemonkey/xpconnect/idl/xpcexception.idl +66 -0
  540. data/vendor/tracemonkey/xpconnect/idl/xpcjsid.idl +83 -0
  541. data/vendor/tracemonkey/xpconnect/loader/ISO8601DateUtils.jsm +176 -0
  542. data/vendor/tracemonkey/xpconnect/loader/Makefile.in +63 -0
  543. data/vendor/tracemonkey/xpconnect/loader/XPCOMUtils.jsm +267 -0
  544. data/vendor/tracemonkey/xpconnect/loader/mozJSComponentLoader.cpp +1717 -0
  545. data/vendor/tracemonkey/xpconnect/loader/mozJSComponentLoader.h +172 -0
  546. data/vendor/tracemonkey/xpconnect/loader/mozJSLoaderConstructors.h +101 -0
  547. data/vendor/tracemonkey/xpconnect/loader/mozJSSubScriptLoader.cpp +360 -0
  548. data/vendor/tracemonkey/xpconnect/loader/mozJSSubScriptLoader.h +66 -0
  549. data/vendor/tracemonkey/xpconnect/public/Makefile.in +54 -0
  550. data/vendor/tracemonkey/xpconnect/public/nsAXPCNativeCallContext.h +89 -0
  551. data/vendor/tracemonkey/xpconnect/public/nsAutoJSValHolder.h +168 -0
  552. data/vendor/tracemonkey/xpconnect/public/xpc_map_end.h +327 -0
  553. data/vendor/tracemonkey/xpconnect/sample/Makefile.in +71 -0
  554. data/vendor/tracemonkey/xpconnect/sample/README +39 -0
  555. data/vendor/tracemonkey/xpconnect/sample/xpcsample1.cpp +337 -0
  556. data/vendor/tracemonkey/xpconnect/sample/xpcsample1.idl +82 -0
  557. data/vendor/tracemonkey/xpconnect/sample/xpcsample1.js +21 -0
  558. data/vendor/tracemonkey/xpconnect/shell/Makefile.in +106 -0
  559. data/vendor/tracemonkey/xpconnect/shell/jsshell.msg +50 -0
  560. data/vendor/tracemonkey/xpconnect/shell/xpcshell.cpp +1817 -0
  561. data/vendor/tracemonkey/xpconnect/shell/xpcshellMacUtils.h +43 -0
  562. data/vendor/tracemonkey/xpconnect/shell/xpcshellMacUtils.mm +54 -0
  563. data/vendor/tracemonkey/xpconnect/src/Makefile.in +228 -0
  564. data/vendor/tracemonkey/xpconnect/src/README +3 -0
  565. data/vendor/tracemonkey/xpconnect/src/XPCCrossOriginWrapper.cpp +1186 -0
  566. data/vendor/tracemonkey/xpconnect/src/XPCDispConvert.cpp +593 -0
  567. data/vendor/tracemonkey/xpconnect/src/XPCDispInlines.h +667 -0
  568. data/vendor/tracemonkey/xpconnect/src/XPCDispInterface.cpp +383 -0
  569. data/vendor/tracemonkey/xpconnect/src/XPCDispObject.cpp +516 -0
  570. data/vendor/tracemonkey/xpconnect/src/XPCDispParamPropJSClass.cpp +223 -0
  571. data/vendor/tracemonkey/xpconnect/src/XPCDispParams.cpp +103 -0
  572. data/vendor/tracemonkey/xpconnect/src/XPCDispPrivate.h +1401 -0
  573. data/vendor/tracemonkey/xpconnect/src/XPCDispTearOff.cpp +547 -0
  574. data/vendor/tracemonkey/xpconnect/src/XPCDispTypeInfo.cpp +471 -0
  575. data/vendor/tracemonkey/xpconnect/src/XPCIDispatchClassInfo.cpp +139 -0
  576. data/vendor/tracemonkey/xpconnect/src/XPCIDispatchExtension.cpp +362 -0
  577. data/vendor/tracemonkey/xpconnect/src/XPCNativeWrapper.cpp +1350 -0
  578. data/vendor/tracemonkey/xpconnect/src/XPCNativeWrapper.h +88 -0
  579. data/vendor/tracemonkey/xpconnect/src/XPCSafeJSObjectWrapper.cpp +1148 -0
  580. data/vendor/tracemonkey/xpconnect/src/XPCSystemOnlyWrapper.cpp +718 -0
  581. data/vendor/tracemonkey/xpconnect/src/XPCWrapper.cpp +850 -0
  582. data/vendor/tracemonkey/xpconnect/src/XPCWrapper.h +394 -0
  583. data/vendor/tracemonkey/xpconnect/src/dom_quickstubs.qsconf +568 -0
  584. data/vendor/tracemonkey/xpconnect/src/nsDispatchSupport.cpp +348 -0
  585. data/vendor/tracemonkey/xpconnect/src/nsScriptError.cpp +201 -0
  586. data/vendor/tracemonkey/xpconnect/src/nsXPConnect.cpp +2609 -0
  587. data/vendor/tracemonkey/xpconnect/src/qsgen.py +1487 -0
  588. data/vendor/tracemonkey/xpconnect/src/xpc.msg +217 -0
  589. data/vendor/tracemonkey/xpconnect/src/xpcJSWeakReference.cpp +148 -0
  590. data/vendor/tracemonkey/xpconnect/src/xpcJSWeakReference.h +56 -0
  591. data/vendor/tracemonkey/xpconnect/src/xpccallcontext.cpp +579 -0
  592. data/vendor/tracemonkey/xpconnect/src/xpccomponents.cpp +4144 -0
  593. data/vendor/tracemonkey/xpconnect/src/xpccontext.cpp +115 -0
  594. data/vendor/tracemonkey/xpconnect/src/xpcconvert.cpp +2298 -0
  595. data/vendor/tracemonkey/xpconnect/src/xpcdebug.cpp +481 -0
  596. data/vendor/tracemonkey/xpconnect/src/xpcexception.cpp +502 -0
  597. data/vendor/tracemonkey/xpconnect/src/xpcforwards.h +114 -0
  598. data/vendor/tracemonkey/xpconnect/src/xpcinlines.h +772 -0
  599. data/vendor/tracemonkey/xpconnect/src/xpcjsid.cpp +1025 -0
  600. data/vendor/tracemonkey/xpconnect/src/xpcjsruntime.cpp +1342 -0
  601. data/vendor/tracemonkey/xpconnect/src/xpclog.cpp +128 -0
  602. data/vendor/tracemonkey/xpconnect/src/xpclog.h +101 -0
  603. data/vendor/tracemonkey/xpconnect/src/xpcmaps.cpp +761 -0
  604. data/vendor/tracemonkey/xpconnect/src/xpcmaps.h +713 -0
  605. data/vendor/tracemonkey/xpconnect/src/xpcmodule.cpp +136 -0
  606. data/vendor/tracemonkey/xpconnect/src/xpcprivate.h +4138 -0
  607. data/vendor/tracemonkey/xpconnect/src/xpcquickstubs.cpp +1128 -0
  608. data/vendor/tracemonkey/xpconnect/src/xpcquickstubs.h +480 -0
  609. data/vendor/tracemonkey/xpconnect/src/xpcruntimesvc.cpp +179 -0
  610. data/vendor/tracemonkey/xpconnect/src/xpcstack.cpp +342 -0
  611. data/vendor/tracemonkey/xpconnect/src/xpcstring.cpp +139 -0
  612. data/vendor/tracemonkey/xpconnect/src/xpcthreadcontext.cpp +599 -0
  613. data/vendor/tracemonkey/xpconnect/src/xpcthrower.cpp +399 -0
  614. data/vendor/tracemonkey/xpconnect/src/xpcvariant.cpp +850 -0
  615. data/vendor/tracemonkey/xpconnect/src/xpcwrappedjs.cpp +670 -0
  616. data/vendor/tracemonkey/xpconnect/src/xpcwrappedjsclass.cpp +2015 -0
  617. data/vendor/tracemonkey/xpconnect/src/xpcwrappednative.cpp +3482 -0
  618. data/vendor/tracemonkey/xpconnect/src/xpcwrappednativeinfo.cpp +945 -0
  619. data/vendor/tracemonkey/xpconnect/src/xpcwrappednativejsops.cpp +2003 -0
  620. data/vendor/tracemonkey/xpconnect/src/xpcwrappednativeproto.cpp +302 -0
  621. data/vendor/tracemonkey/xpconnect/src/xpcwrappednativescope.cpp +991 -0
  622. data/vendor/tracemonkey/xpconnect/tests/Makefile.in +75 -0
  623. data/vendor/tracemonkey/xpconnect/tests/TestXPC.cpp +785 -0
  624. data/vendor/tracemonkey/xpconnect/tests/chrome/Makefile.in +51 -0
  625. data/vendor/tracemonkey/xpconnect/tests/chrome/test_bug500931.xul +43 -0
  626. data/vendor/tracemonkey/xpconnect/tests/components/Makefile.in +85 -0
  627. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_array.cpp +388 -0
  628. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_attributes.cpp +305 -0
  629. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_calljs.cpp +135 -0
  630. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_child.cpp +225 -0
  631. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_const.cpp +76 -0
  632. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_domstring.cpp +118 -0
  633. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_echo.cpp +616 -0
  634. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_in.cpp +204 -0
  635. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_inout.cpp +171 -0
  636. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_module.cpp +77 -0
  637. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_multiple.cpp +554 -0
  638. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_noisy.cpp +154 -0
  639. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_out.cpp +335 -0
  640. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_overloaded.cpp +250 -0
  641. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_private.h +192 -0
  642. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_string.cpp +185 -0
  643. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_variant.cpp +355 -0
  644. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/StdAfx.cpp +12 -0
  645. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/StdAfx.h +28 -0
  646. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCDispUtilities.h +28 -0
  647. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.cpp +86 -0
  648. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.def +9 -0
  649. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.dsp +318 -0
  650. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.dsw +29 -0
  651. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.idl +454 -0
  652. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.rc +145 -0
  653. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.cpp +44 -0
  654. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.h +56 -0
  655. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.rgs +23 -0
  656. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.cpp +221 -0
  657. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.h +53 -0
  658. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.rgs +23 -0
  659. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.cpp +699 -0
  660. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.h +138 -0
  661. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.rgs +23 -0
  662. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.cpp +23 -0
  663. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.h +41 -0
  664. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.rgs +23 -0
  665. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.cpp +256 -0
  666. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.h +88 -0
  667. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.rgs +23 -0
  668. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.cpp +23 -0
  669. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.h +43 -0
  670. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.rgs +23 -0
  671. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.cpp +29 -0
  672. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.h +45 -0
  673. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.rgs +23 -0
  674. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.cpp +177 -0
  675. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.h +50 -0
  676. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.rgs +23 -0
  677. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/resource.h +36 -0
  678. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Arrays/XPCIDispatchArrayTests.js +54 -0
  679. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Attributes/XPCIDispatchAttributeTests.js +150 -0
  680. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/General/XPCIDispatchInstantiations.js +122 -0
  681. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/General/XPCStress.js +58 -0
  682. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Methods/XPCIDispatchMethodTests.js +376 -0
  683. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/shell.js +377 -0
  684. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedJS/General/XPCIDispatchTestWrappedJS.js +76 -0
  685. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedJS/shell.js +377 -0
  686. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/exectests.cmd +1 -0
  687. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/jsDriver.pl +1288 -0
  688. data/vendor/tracemonkey/xpconnect/tests/idl/Makefile.in +61 -0
  689. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest.idl +312 -0
  690. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest2.idl +51 -0
  691. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_attributes.idl +67 -0
  692. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_calljs.idl +59 -0
  693. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_const.idl +61 -0
  694. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_domstring.idl +59 -0
  695. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_in.idl +88 -0
  696. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_inout.idl +86 -0
  697. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_multiple.idl +77 -0
  698. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_out.idl +142 -0
  699. data/vendor/tracemonkey/xpconnect/tests/js/checkid.js +82 -0
  700. data/vendor/tracemonkey/xpconnect/tests/js/evaluate.js +311 -0
  701. data/vendor/tracemonkey/xpconnect/tests/js/exceptions-2.js +153 -0
  702. data/vendor/tracemonkey/xpconnect/tests/js/exceptions-3.js +194 -0
  703. data/vendor/tracemonkey/xpconnect/tests/js/exceptions-4.js +297 -0
  704. data/vendor/tracemonkey/xpconnect/tests/js/exceptions-5.js +343 -0
  705. data/vendor/tracemonkey/xpconnect/tests/js/exceptions.js +230 -0
  706. data/vendor/tracemonkey/xpconnect/tests/js/javascript.js +96 -0
  707. data/vendor/tracemonkey/xpconnect/tests/js/multiple-2.js +151 -0
  708. data/vendor/tracemonkey/xpconnect/tests/js/multiple-3.js +148 -0
  709. data/vendor/tracemonkey/xpconnect/tests/js/multiple-4.js +152 -0
  710. data/vendor/tracemonkey/xpconnect/tests/js/multiple.js +137 -0
  711. data/vendor/tracemonkey/xpconnect/tests/js/notscriptable.js +104 -0
  712. data/vendor/tracemonkey/xpconnect/tests/js/old/simpletest.js +36 -0
  713. data/vendor/tracemonkey/xpconnect/tests/js/old/speed.js +60 -0
  714. data/vendor/tracemonkey/xpconnect/tests/js/old/testxpc.js +464 -0
  715. data/vendor/tracemonkey/xpconnect/tests/js/old/threads.js +74 -0
  716. data/vendor/tracemonkey/xpconnect/tests/js/old/try.js +27 -0
  717. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_array.js +308 -0
  718. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_callcontext.js +68 -0
  719. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_echo.js +636 -0
  720. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_and_sort.js +28 -0
  721. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_constants.js +15 -0
  722. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_create.js +200 -0
  723. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_exceptions.js +167 -0
  724. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_ids.js +135 -0
  725. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_observer.js +36 -0
  726. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_overloaded.js +14 -0
  727. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_primitives.js +141 -0
  728. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_propertybag.js +36 -0
  729. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_variant.js +339 -0
  730. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_variant_array.js +30 -0
  731. data/vendor/tracemonkey/xpconnect/tests/js/readonlyattributes.js +74 -0
  732. data/vendor/tracemonkey/xpconnect/tests/js/readwriteattributes.js +101 -0
  733. data/vendor/tracemonkey/xpconnect/tests/js/scriptable.js +120 -0
  734. data/vendor/tracemonkey/xpconnect/tests/js/testin.js +203 -0
  735. data/vendor/tracemonkey/xpconnect/tests/js/xpcfun.js +234 -0
  736. data/vendor/tracemonkey/xpconnect/tests/js/xpctest_primitives.js +200 -0
  737. data/vendor/tracemonkey/xpconnect/tests/mochitest/Makefile.in +66 -0
  738. data/vendor/tracemonkey/xpconnect/tests/mochitest/bug500931_helper.html +7 -0
  739. data/vendor/tracemonkey/xpconnect/tests/mochitest/inner.html +7 -0
  740. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug361111.xul +29 -0
  741. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug384632.html +32 -0
  742. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug390488.html +65 -0
  743. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug393269.html +46 -0
  744. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug396851.html +43 -0
  745. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug428021.html +41 -0
  746. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug446584.html +49 -0
  747. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug448587.html +31 -0
  748. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug462428.html +42 -0
  749. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug478438.html +66 -0
  750. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug484107.html +100 -0
  751. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug484459.html +36 -0
  752. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug500691.html +28 -0
  753. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_wrappers.html +116 -0
  754. data/vendor/tracemonkey/xpconnect/tests/unit/bogus_element_type.jsm +1 -0
  755. data/vendor/tracemonkey/xpconnect/tests/unit/bogus_exports_type.jsm +1 -0
  756. data/vendor/tracemonkey/xpconnect/tests/unit/bug451678_subscript.js +2 -0
  757. data/vendor/tracemonkey/xpconnect/tests/unit/component_import.js +144 -0
  758. data/vendor/tracemonkey/xpconnect/tests/unit/recursive_importA.jsm +44 -0
  759. data/vendor/tracemonkey/xpconnect/tests/unit/recursive_importB.jsm +45 -0
  760. data/vendor/tracemonkey/xpconnect/tests/unit/syntax_error.jsm +1 -0
  761. data/vendor/tracemonkey/xpconnect/tests/unit/test_bogus_files.js +88 -0
  762. data/vendor/tracemonkey/xpconnect/tests/unit/test_bug408412.js +51 -0
  763. data/vendor/tracemonkey/xpconnect/tests/unit/test_bug451678.js +52 -0
  764. data/vendor/tracemonkey/xpconnect/tests/unit/test_bug_442086.js +68 -0
  765. data/vendor/tracemonkey/xpconnect/tests/unit/test_import.js +127 -0
  766. data/vendor/tracemonkey/xpconnect/tests/unit/test_js_weak_references.js +63 -0
  767. data/vendor/tracemonkey/xpconnect/tests/unit/test_recursive_import.js +62 -0
  768. data/vendor/tracemonkey/xpconnect/tools/Makefile.in +49 -0
  769. data/vendor/tracemonkey/xpconnect/tools/idl/Makefile.in +53 -0
  770. data/vendor/tracemonkey/xpconnect/tools/idl/nsIXPCToolsCompiler.idl +60 -0
  771. data/vendor/tracemonkey/xpconnect/tools/idl/nsIXPCToolsProfiler.idl +57 -0
  772. data/vendor/tracemonkey/xpconnect/tools/js/CompileJSFiles.js +28 -0
  773. data/vendor/tracemonkey/xpconnect/tools/js/ListJSFiles.js +18 -0
  774. data/vendor/tracemonkey/xpconnect/tools/src/Makefile.in +76 -0
  775. data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsCompiler.cpp +161 -0
  776. data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsModule.cpp +65 -0
  777. data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsProfiler.cpp +370 -0
  778. data/vendor/tracemonkey/xpconnect/tools/src/xpctools_private.h +236 -0
  779. metadata +782 -107
  780. data/test/johnson/nodes/export_test.rb +0 -9
  781. data/test/johnson/nodes/import_test.rb +0 -13
  782. data/test/johnson/version_test.rb +0 -13
@@ -0,0 +1,120 @@
1
+ # Microsoft Developer Studio Project File - Name="LiveConnectShell" - Package Owner=<4>
2
+ # Microsoft Developer Studio Generated Build File, Format Version 5.00
3
+ # ** DO NOT EDIT **
4
+
5
+ # TARGTYPE "Win32 (x86) Console Application" 0x0103
6
+
7
+ CFG=LiveConnectShell - Win32 Debug
8
+ !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9
+ !MESSAGE use the Export Makefile command and run
10
+ !MESSAGE
11
+ !MESSAGE NMAKE /f "LiveConnectShell.mak".
12
+ !MESSAGE
13
+ !MESSAGE You can specify a configuration when running NMAKE
14
+ !MESSAGE by defining the macro CFG on the command line. For example:
15
+ !MESSAGE
16
+ !MESSAGE NMAKE /f "LiveConnectShell.mak" CFG="LiveConnectShell - Win32 Debug"
17
+ !MESSAGE
18
+ !MESSAGE Possible choices for configuration are:
19
+ !MESSAGE
20
+ !MESSAGE "LiveConnectShell - Win32 Release" (based on\
21
+ "Win32 (x86) Console Application")
22
+ !MESSAGE "LiveConnectShell - Win32 Debug" (based on\
23
+ "Win32 (x86) Console Application")
24
+ !MESSAGE
25
+
26
+ # Begin Project
27
+ # PROP Scc_ProjName ""
28
+ # PROP Scc_LocalPath ""
29
+ CPP=cl.exe
30
+ RSC=rc.exe
31
+
32
+ !IF "$(CFG)" == "LiveConnectShell - Win32 Release"
33
+
34
+ # PROP BASE Use_MFC 0
35
+ # PROP BASE Use_Debug_Libraries 0
36
+ # PROP BASE Output_Dir "LiveConnectShell_"
37
+ # PROP BASE Intermediate_Dir "LiveConnectShell_"
38
+ # PROP BASE Target_Dir ""
39
+ # PROP Use_MFC 0
40
+ # PROP Use_Debug_Libraries 0
41
+ # PROP Output_Dir "Release"
42
+ # PROP Intermediate_Dir "Release"
43
+ # PROP Ignore_Export_Lib 0
44
+ # PROP Target_Dir ""
45
+ # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
46
+ # ADD CPP /nologo /MD /W3 /GX /O2 /I "$(JDK)\include" /I "$(JDK)\include\win32" /I "." /D "_WIN32" /D "WIN32" /D "NDEBUG" /D "XP_WIN" /D "_WINDOWS" /D "JSFILE" /D "LIVECONNECT" /YX /FD /c
47
+ # ADD BASE RSC /l 0x409 /d "NDEBUG"
48
+ # ADD RSC /l 0x409 /d "NDEBUG"
49
+ BSC32=bscmake.exe
50
+ # ADD BASE BSC32 /nologo
51
+ # ADD BSC32 /nologo
52
+ LINK32=link.exe
53
+ # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
54
+ # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /out:"Release/lcshell.exe"
55
+ # Begin Special Build Tool
56
+ SOURCE=$(InputPath)
57
+ PostBuild_Desc=Copy DLL(s) to build directory
58
+ PostBuild_Cmds=COPY ..\Release\js32.dll .\Release
59
+ # End Special Build Tool
60
+
61
+ !ELSEIF "$(CFG)" == "LiveConnectShell - Win32 Debug"
62
+
63
+ # PROP BASE Use_MFC 0
64
+ # PROP BASE Use_Debug_Libraries 1
65
+ # PROP BASE Output_Dir "LiveConnectShell0"
66
+ # PROP BASE Intermediate_Dir "LiveConnectShell0"
67
+ # PROP BASE Target_Dir ""
68
+ # PROP Use_MFC 0
69
+ # PROP Use_Debug_Libraries 1
70
+ # PROP Output_Dir "Debug"
71
+ # PROP Intermediate_Dir "Debug"
72
+ # PROP Ignore_Export_Lib 0
73
+ # PROP Target_Dir ""
74
+ # ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
75
+ # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "$(JDK)\include" /I "$(JDK)\include\win32" /I "." /D "LIVECONNECT" /D "_WIN32" /D "WIN32" /D "_DEBUG" /D "DEBUG" /D "XP_WIN" /D "_WINDOWS" /D "JSFILE" /FR /YX /FD /c
76
+ # SUBTRACT CPP /u
77
+ # ADD BASE RSC /l 0x409 /d "_DEBUG"
78
+ # ADD RSC /l 0x409 /d "_DEBUG"
79
+ BSC32=bscmake.exe
80
+ # ADD BASE BSC32 /nologo
81
+ # ADD BSC32 /nologo
82
+ LINK32=link.exe
83
+ # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
84
+ # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib $(JDK)\lib\javai_g.lib /nologo /subsystem:console /debug /machine:I386 /out:"Debug/lcshell.exe" /pdbtype:sept
85
+ # Begin Special Build Tool
86
+ SOURCE=$(InputPath)
87
+ PostBuild_Desc=Copy DLL(s) to build directory
88
+ PostBuild_Cmds=COPY ..\Debug\js32.dll .\Debug
89
+ # End Special Build Tool
90
+
91
+ !ENDIF
92
+
93
+ # Begin Target
94
+
95
+ # Name "LiveConnectShell - Win32 Release"
96
+ # Name "LiveConnectShell - Win32 Debug"
97
+ # Begin Source File
98
+
99
+ SOURCE=..\js.c
100
+ # End Source File
101
+ # Begin Source File
102
+
103
+ SOURCE=..\Debug\js32.lib
104
+ # End Source File
105
+ # Begin Source File
106
+
107
+ SOURCE=.\jsj_simpleapi.c
108
+
109
+ !IF "$(CFG)" == "LiveConnectShell - Win32 Release"
110
+
111
+ !ELSEIF "$(CFG)" == "LiveConnectShell - Win32 Debug"
112
+
113
+ # ADD CPP /I ".."
114
+ # SUBTRACT CPP /I "."
115
+
116
+ !ENDIF
117
+
118
+ # End Source File
119
+ # End Target
120
+ # End Project
@@ -0,0 +1,44 @@
1
+ Microsoft Developer Studio Workspace File, Format Version 5.00
2
+ # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
3
+
4
+ ###############################################################################
5
+
6
+ Project: "LiveConnect"=.\LiveConnect.dsp - Package Owner=<4>
7
+
8
+ Package=<5>
9
+ {{{
10
+ }}}
11
+
12
+ Package=<4>
13
+ {{{
14
+ }}}
15
+
16
+ ###############################################################################
17
+
18
+ Project: "LiveConnectShell"=.\LiveConnectShell.dsp - Package Owner=<4>
19
+
20
+ Package=<5>
21
+ {{{
22
+ }}}
23
+
24
+ Package=<4>
25
+ {{{
26
+ Begin Project Dependency
27
+ Project_Dep_Name LiveConnect
28
+ End Project Dependency
29
+ }}}
30
+
31
+ ###############################################################################
32
+
33
+ Global:
34
+
35
+ Package=<5>
36
+ {{{
37
+ }}}
38
+
39
+ Package=<3>
40
+ {{{
41
+ }}}
42
+
43
+ ###############################################################################
44
+
@@ -0,0 +1,105 @@
1
+ #
2
+ # ***** BEGIN LICENSE BLOCK *****
3
+ # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4
+ #
5
+ # The contents of this file are subject to the Mozilla Public License Version
6
+ # 1.1 (the "License"); you may not use this file except in compliance with
7
+ # the License. You may obtain a copy of the License at
8
+ # http://www.mozilla.org/MPL/
9
+ #
10
+ # Software distributed under the License is distributed on an "AS IS" basis,
11
+ # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12
+ # for the specific language governing rights and limitations under the
13
+ # License.
14
+ #
15
+ # The Original Code is Mozilla Communicator client code, released
16
+ # March 31, 1998.
17
+ #
18
+ # The Initial Developer of the Original Code is
19
+ # Netscape Communications Corporation.
20
+ # Portions created by the Initial Developer are Copyright (C) 1998
21
+ # the Initial Developer. All Rights Reserved.
22
+ #
23
+ # Contributor(s):
24
+ #
25
+ # Alternatively, the contents of this file may be used under the terms of
26
+ # either of the GNU General Public License Version 2 or later (the "GPL"),
27
+ # or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28
+ # in which case the provisions of the GPL or the LGPL are applicable instead
29
+ # of those above. If you wish to allow use of your version of this file only
30
+ # under the terms of either the GPL or the LGPL, and not to allow others to
31
+ # use your version of this file under the terms of the MPL, indicate your
32
+ # decision by deleting the provisions above and replace them with the notice
33
+ # and other provisions required by the GPL or the LGPL. If you do not delete
34
+ # the provisions above, a recipient may use your version of this file under
35
+ # the terms of any one of the MPL, the GPL or the LGPL.
36
+ #
37
+ # ***** END LICENSE BLOCK *****
38
+
39
+ DEPTH = ../../..
40
+ topsrcdir = @top_srcdir@
41
+ srcdir = @srcdir@
42
+ VPATH = @srcdir@
43
+
44
+ include $(DEPTH)/config/autoconf.mk
45
+
46
+ MODULE = liveconnect
47
+ LIBRARY_NAME = jsj
48
+ EXPORT_LIBRARY = 1
49
+ ifeq ($(OS_ARCH)$(MOZ_ENABLE_LIBXUL),WINNT)
50
+ LIBRARY_NAME = jsj$(MOZ_BITS)$(VERSION_NUMBER)
51
+ MAPFILE = $(LIBRARY_NAME).map
52
+ endif
53
+ JNI_GEN_DIR = _jni
54
+ GRE_MODULE = 1
55
+ LIBXUL_LIBRARY = 1
56
+
57
+ REQUIRES = js \
58
+ xpcom \
59
+ xpconnect \
60
+ java \
61
+ caps \
62
+ necko \
63
+ string \
64
+ $(NULL)
65
+
66
+ CSRCS = \
67
+ jsj.c \
68
+ jsj_JSObject.c \
69
+ jsj_JavaArray.c \
70
+ jsj_JavaClass.c \
71
+ jsj_JavaMember.c \
72
+ jsj_JavaObject.c \
73
+ jsj_JavaPackage.c \
74
+ jsj_array.c \
75
+ jsj_class.c \
76
+ jsj_convert.c \
77
+ jsj_field.c \
78
+ jsj_hash.c \
79
+ jsj_method.c \
80
+ jsj_utils.c \
81
+ $(NULL)
82
+
83
+ CPPSRCS = \
84
+ nsCLiveconnect.cpp \
85
+ nsCLiveconnectFactory.cpp \
86
+ $(NULL)
87
+
88
+ EXPORTS = \
89
+ $(srcdir)/jsjava.h \
90
+ $(srcdir)/$(JNI_GEN_DIR)/netscape_javascript_JSObject.h \
91
+ $(srcdir)/$(JNI_GEN_DIR)/netscape_javascript_JSException.h \
92
+ $(srcdir)/nsILiveconnect.h \
93
+ $(srcdir)/nsISecureLiveconnect.h \
94
+ $(srcdir)/nsISecurityContext.h \
95
+ $(NULL)
96
+
97
+ EXTRA_DSO_LDOPTS += \
98
+ $(LIBS_DIR) \
99
+ $(MOZ_JS_LIBS) \
100
+ $(MOZ_COMPONENT_LIBS) \
101
+ $(NULL)
102
+
103
+ include $(topsrcdir)/config/rules.mk
104
+
105
+
@@ -0,0 +1,169 @@
1
+ # -*- Mode: makefile -*-
2
+ #
3
+ # ***** BEGIN LICENSE BLOCK *****
4
+ # Version: MPL 1.1/GPL 2.0/LGPL 2.1
5
+ #
6
+ # The contents of this file are subject to the Mozilla Public License Version
7
+ # 1.1 (the "License"); you may not use this file except in compliance with
8
+ # the License. You may obtain a copy of the License at
9
+ # http://www.mozilla.org/MPL/
10
+ #
11
+ # Software distributed under the License is distributed on an "AS IS" basis,
12
+ # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13
+ # for the specific language governing rights and limitations under the
14
+ # License.
15
+ #
16
+ # The Original Code is Mozilla Communicator client code, released
17
+ # March 31, 1998.
18
+ #
19
+ # The Initial Developer of the Original Code is
20
+ # Netscape Communications Corporation.
21
+ # Portions created by the Initial Developer are Copyright (C) 1998
22
+ # the Initial Developer. All Rights Reserved.
23
+ #
24
+ # Contributor(s):
25
+ #
26
+ # Alternatively, the contents of this file may be used under the terms of
27
+ # either of the GNU General Public License Version 2 or later (the "GPL"),
28
+ # or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29
+ # in which case the provisions of the GPL or the LGPL are applicable instead
30
+ # of those above. If you wish to allow use of your version of this file only
31
+ # under the terms of either the GPL or the LGPL, and not to allow others to
32
+ # use your version of this file under the terms of the MPL, indicate your
33
+ # decision by deleting the provisions above and replace them with the notice
34
+ # and other provisions required by the GPL or the LGPL. If you do not delete
35
+ # the provisions above, a recipient may use your version of this file under
36
+ # the terms of any one of the MPL, the GPL or the LGPL.
37
+ #
38
+ # ***** END LICENSE BLOCK *****
39
+
40
+ #
41
+ # JSRef GNUmake makefile.
42
+ #
43
+
44
+ DEPTH = ..
45
+
46
+ # Create JAR file
47
+ DIRS += classes
48
+
49
+ #
50
+ # XCFLAGS may be set in the environment or on the gmake command line
51
+ #
52
+ CFLAGS += $(OPTIMIZER) $(OS_CFLAGS) $(DEFINES) $(INCLUDES) \
53
+ -DJSFILE $(XCFLAGS)
54
+ LDFLAGS += -lm $(XLDFLAGS)
55
+
56
+ # For purify
57
+ PURE_CFLAGS = -DXP_UNIX $(OPTIMIZER) $(PURE_OS_CFLAGS) $(DEFINES) \
58
+ $(INCLUDES) $(XCFLAGS)
59
+
60
+ #
61
+ # LC file lists
62
+ #
63
+ LC_HFILES = \
64
+ jsj_hash.h \
65
+ jsj_private.h \
66
+ jsjava.h \
67
+ netscape_javascript_JSObject.h \
68
+ nsCLiveconnectFactory.h \
69
+ nsILiveconnect.h \
70
+ nsISecureLiveconnect.h \
71
+ nsISecurityContext.h \
72
+ $(NULL)
73
+
74
+ OTHER_HFILES = \
75
+ jsj.msg \
76
+ $(NULL)
77
+
78
+ HFILES = $(LC_HFILES) $(OTHER_HFILES)
79
+
80
+ LC_CFILES = \
81
+ jsj.c \
82
+ jsj_JSObject.c \
83
+ jsj_JavaArray.c \
84
+ jsj_JavaClass.c \
85
+ jsj_JavaMember.c \
86
+ jsj_JavaObject.c \
87
+ jsj_JavaPackage.c \
88
+ jsj_array.c \
89
+ jsj_class.c \
90
+ jsj_convert.c \
91
+ jsj_field.c \
92
+ jsj_hash.c \
93
+ jsj_method.c \
94
+ jsj_utils.c \
95
+ $(NULL)
96
+
97
+ LIB_CFILES = $(LC_CFILES)
98
+
99
+ PROG_FILE = js
100
+
101
+ include $(DEPTH)/config.mk
102
+ include config/$(OS_CONFIG).mk
103
+
104
+ INCLUDES += -I. -I.. -I../$(OBJDIR)
105
+
106
+ ifdef USE_MSVC
107
+ OTHER_LIBS += $(DEPTH)/fdlibm/$(OBJDIR)/fdlibm.lib
108
+ else
109
+ OTHER_LIBS += -L$(DEPTH)/fdlibm/$(OBJDIR) -lfdm -L../$(OBJDIR) -ljs
110
+ endif
111
+
112
+ #
113
+ # Line editing support.
114
+ # Define JS_READLINE or JS_EDITLINE to enable line editing in the
115
+ # lcshell command-line interpreter.
116
+ #
117
+ ifdef JS_READLINE
118
+ # For those platforms with the readline library installed.
119
+ DEFINES += -DEDITLINE
120
+ OTHER_LIBS += -lreadline
121
+ else
122
+ ifdef JS_EDITLINE
123
+ # Use the editline library from ../editline.
124
+ PREDIRS += ../editline
125
+ DEFINES += -DEDITLINE
126
+ OTHER_LIBS += -L../editline/$(OBJDIR) -ledit
127
+ endif
128
+ endif
129
+
130
+ NSPR_LIBSUFFIX = 4
131
+
132
+ ifdef JS_THREADSAFE
133
+ DEFINES += -DJS_THREADSAFE
134
+ INCLUDES += -I../../../dist/$(OBJDIR)/include
135
+ ifdef USE_MSVC
136
+ OTHER_LIBS += $(DEPTH)/../../dist/$(OBJDIR)/lib/libnspr${NSPR_LIBSUFFIX}.lib
137
+ else
138
+ OTHER_LIBS += -L$(DEPTH)/../../dist/$(OBJDIR)/lib -lnspr${NSPR_LIBSUFFIX}
139
+ endif
140
+ endif
141
+
142
+ ifdef USE_MSVC
143
+ LIBRARY = $(OBJDIR)/jsj.lib
144
+ SHARED_LIBRARY = $(OBJDIR)/jsj.dll
145
+ PROGRAM = $(OBJDIR)/lcshell.exe
146
+ else
147
+ LIBRARY = $(OBJDIR)/libjsj.a
148
+ SHARED_LIBRARY = $(OBJDIR)/libjsj.$(SO_SUFFIX)
149
+ PROGRAM = $(OBJDIR)/lcshell
150
+ endif
151
+
152
+ include $(DEPTH)/rules.mk
153
+
154
+ ifdef USE_MSVC
155
+ $(OBJDIR)/$(PROG_FILE)_lc.obj: ../$(PROG_FILE).c
156
+ @$(MAKE_OBJDIR)
157
+ $(CC) -Fo$@ -c $(CFLAGS) -DLIVECONNECT ../$(PROG_FILE).c
158
+
159
+ $(PROGRAM): $(OBJDIR)/$(PROG_FILE)_lc.obj $(OBJDIR)/jsj_simpleapi.obj $(LIBRARY)
160
+ link.exe -out:"$@" $(EXE_LINK_FLAGS) ../$(OBJDIR)/js32.lib $(OTHER_LIBS) $?
161
+ else
162
+ $(OBJDIR)/$(PROG_FILE).o: ../$(PROG_FILE).c
163
+ @$(MAKE_OBJDIR)
164
+ $(CC) -o $@ -c $(CFLAGS) -DLIVECONNECT ../$(PROG_FILE).c
165
+
166
+ $(PROGRAM): $(OBJDIR)/$(PROG_FILE).o $(OBJDIR)/jsj_simpleapi.o
167
+ @$(MAKE_OBJDIR)
168
+ $(CC) -o $@ $(CFLAGS) $+ $(LIBRARY) ../$(OBJDIR)/libjs.a $(LDFLAGS) $(OTHER_LIBS)
169
+ endif
@@ -0,0 +1,712 @@
1
+ <!-- ***** BEGIN LICENSE BLOCK *****
2
+ - Version: MPL 1.1/GPL 2.0/LGPL 2.1
3
+ -
4
+ - The contents of this file are subject to the Mozilla Public License Version
5
+ - 1.1 (the "License"); you may not use this file except in compliance with
6
+ - the License. You may obtain a copy of the License at
7
+ - http://www.mozilla.org/MPL/
8
+ -
9
+ - Software distributed under the License is distributed on an "AS IS" basis,
10
+ - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11
+ - for the specific language governing rights and limitations under the
12
+ - License.
13
+ -
14
+ - The Original Code is Mozilla Communicator client code, released
15
+ - March 31, 1998.
16
+ -
17
+ - The Initial Developer of the Original Code is
18
+ - Netscape Communications Corporation.
19
+ - Portions created by the Initial Developer are Copyright (C) 1998-1999
20
+ - the Initial Developer. All Rights Reserved.
21
+ -
22
+ - Contributor(s):
23
+ -
24
+ - Alternatively, the contents of this file may be used under the terms of
25
+ - either of the GNU General Public License Version 2 or later (the "GPL"),
26
+ - or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27
+ - in which case the provisions of the GPL or the LGPL are applicable instead
28
+ - of those above. If you wish to allow use of your version of this file only
29
+ - under the terms of either the GPL or the LGPL, and not to allow others to
30
+ - use your version of this file under the terms of the MPL, indicate your
31
+ - decision by deleting the provisions above and replace them with the notice
32
+ - and other provisions required by the GPL or the LGPL. If you do not delete
33
+ - the provisions above, a recipient may use your version of this file under
34
+ - the terms of any one of the MPL, the GPL or the LGPL.
35
+ -
36
+ - ***** END LICENSE BLOCK ***** -->
37
+
38
+ <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
39
+ <html>
40
+ <head>
41
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
42
+ <meta name="Author" content="Scott Furman">
43
+ <meta name="GENERATOR" content="Mozilla/4.5 [en] (WinNT; I) [Netscape]">
44
+ <title>README for LiveConnect</title>
45
+ </head>
46
+ <body>
47
+ This is the README file for the JavaScript LiveConnect
48
+ Version 3 ("LC3") implementation.
49
+ <h2>
50
+ Table of Contents</h2>
51
+
52
+ <blockquote><a href="#Introduction">Introduction</a>
53
+ <br><a href="#New_Features">New features</a>
54
+ <br><a href="#Compatibility">Compatibility</a>
55
+ <br><a href="#Limitations">Limitations/Bugs/To-Do</a>
56
+ <br><a href="#Build_conventions">Build conventions</a>
57
+ <br><a href="#coding_conventions">Naming and coding conventions</a>
58
+ <br><a href="#API">The LiveConnect API</a>
59
+ <br><a href="#sample_shell_interaction">Sample LiveConnect shell interactions</a></blockquote>
60
+
61
+ <h2>
62
+ <a NAME="Introduction"></a>Introduction</h2>
63
+ <span CLASS=LXRLONGDESC> <span CLASS=LXRSHORTDESC>LiveConnect is a library that
64
+ permits JavaScript and Java virtual machines to interoperate.</span> Specifically,
65
+ it enables JavaScript to access Java fields, invoke Java methods and enables Java
66
+ to access JavaScript object properties and evaluate arbitrary JavaScript.</span>
67
+ LiveConnect was originally an integrated feature of both the Netscape Navigator
68
+ browser and Netscape's server-side JavaScript. Now, it is a standalone library
69
+ that can be embedded within other projects, such as the Mozilla browser. More
70
+ information on LiveConnect can be found by <a href="http://developer.netscape.com/find/find.cgi?scope=LiveConnect&browse-category=&ui=sr&chunk-size=&page=1&taxonomy=DevEdge+Online">searching
71
+ the index on Netscape's DevEdge site</a>.&nbsp; This README assumes basic familiarity
72
+ with <a href="http://lxr.mozilla.org/mozilla/source/js/src/README.html">JSRef</a>,
73
+ the reference implementation of JavaScript, and with the LiveConnect technology.
74
+ <p>The JSRef project/makefiles (located in another directory) build a library
75
+ or DLL containing the JavaScript runtime (compiler, interpreter, decompiler,
76
+ garbage collector, atom manager, standard classes).&nbsp; The LiveConnect project/makefiles
77
+ build a library that links with both JSRef and any Java Virtual Machine (JVM)
78
+ that implements the Java Native Interface (JNI), as specified by JavaSoft.&nbsp;
79
+ It then compiles a small "shell" example program and links that with the library
80
+ to make an interpreter that can be used interactively and with test scripts.&nbsp;
81
+ See the <a href="#sample_shell_interaction">sample shell interactions</a>.
82
+ <p><i>Scott Furman, 10/31/98</i>
83
+ <h2>
84
+ <a NAME="New_Features"></a>New features</h2>
85
+ The following features were not available in the versions of LiveConnect that
86
+ were integrated with Netscape Navigator versions 4.x and earlier.&nbsp; For information
87
+ on LiveConnect version 1, which was used in Navigator versions 3 and 4, and Enterprise
88
+ Server 3, see <a href="http://developer.netscape.com/find/find.cgi?scope=LiveConnect&browse-category=&ui=sr&chunk-size=&page=1&taxonomy=DevEdge+Online">Netscape's
89
+ DevEdge site</a> or any number of 3rd-party publications.)
90
+ <h4> LiveConnect version 3 (8/31/99)</h4>
91
+
92
+ <ul>
93
+ <li> In previous versions of LiveConnect, when more than one overloaded Java
94
+ method was compatible with the types of arguments in an invocation from JS,
95
+ the choice of Java method was made arbitrarily, by using the first one enumerated
96
+ by the Java reflection APIs.&nbsp; Unfortunately, the ordering of methods
97
+ when enumerating is not governed by any specification, so differences between
98
+ JVM vendors could lead to inconsistencies in LiveConnect behavior.&nbsp; Now,
99
+ a <a href="http://www.mozilla.org/js/liveconnect/lc3_method_overloading.html">JVM-independent
100
+ set of rules</a> is used to choose among a set of overloaded methods.&nbsp;&nbsp;
101
+ Informally, the method with Java parameter types that most&nbsp; closely match
102
+ the JavaScript types is chosen.<BR>
103
+ <BR>
104
+ </li>
105
+ <li> The weak correspondence between the JS language typing system and Java's
106
+ may result in ambiguity and/or shadowing when resolving among overloaded Java
107
+ methods, even when using LC3's improved method overload resolution algorithm
108
+ (see above).&nbsp; For example, JS's number type can map to a Java method
109
+ argument that has any floating-point or integral types: byte, char, short,
110
+ int, long, float, double.&nbsp;&nbsp; If necessary, it is now possible to
111
+ bypass the method overload resolution process and explicitly specify the method
112
+ to be invoked:</li>
113
+ <BR>
114
+ <br>
115
+ &nbsp;
116
+ <ul>
117
+ <tt>myPrintMethod = java.io.PrintStream["print(double)"];</tt> <br>
118
+ <tt>myPrintMethod(13);</tt>
119
+ </ul>
120
+ <br>
121
+ <li> Static methods can now be invoked using either the class name or a reference
122
+ to an instance of the class.&nbsp; (Older versions of LiveConnect allow only
123
+ the former.)<BR>
124
+ <BR>
125
+ </li>
126
+ <li> It is no longer necessary to convert Java Strings to JS strings before
127
+ using them as the receivers of JS string methods, which is typically done
128
+ by appending an empty string to the Java string, e.g.
129
+ <BLOCKQUOTE>
130
+ <P> <tt>&nbsp;&nbsp;&nbsp; s = new java.lang.String("foo")</tt> // s contains
131
+ a Java string<br>
132
+ <tt>&nbsp;&nbsp;&nbsp; s = s + "";&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
133
+ </tt>// s is now a JS string <br>
134
+ <tt>&nbsp;&nbsp;&nbsp; m = s.match(/o?/)</tt> </P>
135
+ </BLOCKQUOTE>
136
+ </li>
137
+ <p>The explicit conversion to a JS string is no longer required because <i>java.lang.String</i>
138
+ objects are treated as a special case that "inherit" all the methods of JS
139
+ strings, i.e. so that the second statement in the example above is now superfluous.<BR>
140
+ <BR>
141
+ <li> Similarly, JavaArray objects "inherit" the methods of JS's <tt>Array.prototype</tt>,
142
+ so it is possible to apply many, though not all, of the JS array utility methods
143
+ such as <tt>reverse()</tt> and <tt>join()</tt> to JavaArray objects.<BR>
144
+ <BR>
145
+ </li>
146
+ <li> There is now support for the <tt>instanceof</tt> and <tt>in</tt> operators.&nbsp;
147
+ These operators are currently proposed for inclusion in the ECMA-2 standard.<BR>
148
+ <BR>
149
+ </li>
150
+ <li> LiveConnect has been extended to take advantage of JavaScript exceptions,
151
+ a language feature that debuted in JavaScript 1.4.&nbsp; Now, when JavaScript
152
+ calls into Java, any Java exceptions are converted to JS exceptions which
153
+ can be caught using JS try-catch statements.&nbsp; Similarly, JS exceptions
154
+ are propagated to Java wrapped in an instance of <i>netscape.javascript.JSException</i>.<BR>
155
+ <BR>
156
+ </li>
157
+ <li>JavaScript Array objects can now be passed to Java methods that expect a
158
+ Java array as an argument. <BR>
159
+ LiveConnect will create a new Java array of the appropriate type with a length
160
+ equal to that of the JS Array object. Each element of the Java array is filled
161
+ in by converting the corresponding element of the JS array, including undefined
162
+ elements, to an equivalent Java value. Note: Since the contents of the JS
163
+ array are copied, side-effects made by the invoked Java method to the Java
164
+ array will not be reflected in the JS array argument. </li>
165
+ </ul>
166
+
167
+ <h4>
168
+ LiveConnect version 2 (7/31/98)</h4>
169
+
170
+ <blockquote>
171
+ <li> The Java methods of <i>java.lang.Object</i> are now invokeable methods
172
+ of <tt><font size=+1>JavaArray</font></tt> objects, matching the behavior
173
+ of arrays when accessed from Java<i>.</i>&nbsp; (Java arrays are a subclass
174
+ of <i>java.lang.Object</i>.) For example, Java's <tt>getClass()</tt> and <tt>hashCode()</tt>
175
+ methods can now be called on <tt>JavaArray</tt> objects.&nbsp; (In prior versions
176
+ of LiveConnect, the methods of <i>java.lang.Object</i> were only inherited
177
+ by non-array Java objects.)</li>
178
+
179
+ <p>Note that this change has caused the string representation of JavaArray objects
180
+ to change.&nbsp; Previously, the JavaArray toString() method always printed
181
+ "<tt><font size=+1>[object JavaArray]"</font></tt> for all <tt>JavaArray</tt>'s.&nbsp;
182
+ Now, the Java <tt>java.lang.Object.toString()</tt> method is called to convert
183
+ JavaArray objects to strings, just as with other, non-array Java objects that
184
+ are accessible via LiveConnect. <tt>java.lang.Object.toString()</tt>is defined
185
+ in the <i>Java Language Specification</i> to return the value of the following
186
+ expression:
187
+ <p><tt><font size=-1>getClass().getName() + '@' + Integer.toHexString(hashCode())</font></tt><BR>
188
+ <br>
189
+ &nbsp;
190
+ <li> A one-character string is now an acceptable match for an argument to a
191
+ Java method of type <tt>char</tt>.&nbsp; (In earlier versions of LiveConnect,
192
+ the only acceptable match for a <tt>char</tt> had to be a JavaScript value
193
+ that was convertible to a number.)&nbsp; For example, the following is now
194
+ possible:</li>
195
+
196
+ <p><tt><font size=-1>c = new java.lang.Character("F")</font></tt><BR>
197
+ <br>
198
+ &nbsp;
199
+ <li>
200
+ A JavaClass object is now an acceptable match for an argument to a Java
201
+ method of type <i>java.lang.Class</i>.&nbsp; For example, you can now write:</li>
202
+
203
+ <p><tt><font size=-1>java.lang.reflect.Array.newInstance(java.lang.String,
204
+ 3)</font></tt>
205
+ <p>instead of the more verbose:
206
+ <p><tt><font size=-1>jls = java.lang.Class.forName("java.lang.String")</font></tt>
207
+ <br>
208
+ <tt><font size=-1>java.lang.reflect.Array.newInstance(jls, 3)</font></tt>
209
+ <p><br>
210
+ &nbsp;
211
+ </blockquote>
212
+
213
+ <h2>
214
+ <a NAME="Compatibility"></a>Compatibility</h2>
215
+ Unlike this standalone/component release, all previous versions of LiveConnect
216
+ appeared only as an integrated feature of Netscape Navigator or the Enterprise
217
+ Server.&nbsp; The variants of LiveConnect that appeared in Navigator versions
218
+ 3.x and 4.x all behave much the same, modulo bugs.&nbsp; For brevity we refer
219
+ to this classic version of LiveConnect as "LC1" (LiveConnect version 1) and this
220
+ most recent release as "LC3".&nbsp; With a few exceptions LC3 provides a superset
221
+ of LC1 features. (There was an intermediate LiveConnect release known as "LC2"
222
+ in 7/98, but it was not used in any products.)
223
+ <ul>
224
+ <li> As in LC1, JavaScript objects appear to Java as instances of <i>netscape.javascript.JSObject</i>.&nbsp;
225
+ In LC1, two <i>JSObject</i>'s could be tested for equality, i.e. to see if
226
+ they refer to the same instance, by using the `==' operator.&nbsp; Instead,
227
+ developers must now use the <tt>equals()</tt>method of <i>netscape.javascript.JSObject</i>
228
+ for comparison, a method that overrides <tt>java.lang.Object.equals()</tt>.&nbsp;
229
+ Note that using <tt>equals()</tt> instead of `==' will work the same in all
230
+ versions of LiveConnect, including LC3</li>
231
+ <p>[It is not possible to replicate the identity behavior of the `==' operator
232
+ that LC1 provides without the use of "weak" references, i.e. references that
233
+ do not contribute to making a Java object reachable for purposes of garbage
234
+ collection, but which nonetheless allow reference to an object as long as
235
+ it is reachable by other means.&nbsp; The use of weak references is not portable,
236
+ however.&nbsp; It is not part of the JNI or JDK 1.1 and it is not provided
237
+ on all JVMs.&nbsp; The JDK1.2 release includes standard support for weak references.]<BR>
238
+ <br>
239
+ &nbsp;
240
+ <li> It's possible that, in a set of overloaded Java methods, more than one
241
+ method is compatible with the types of the actual arguments in a call from
242
+ JavaScript to Java via LiveConnect.&nbsp; LC1 and LC2 resolved these ambiguities
243
+ in a simplistic manner, by simply invoking whatever method was enumerated
244
+ first by the JVM.&nbsp; The enumeration order of reflected methods using <i>java.lang.reflect</i>&nbsp;
245
+ is not specified by Sun and may differ among vendor's JVMs, i.e. enumeration
246
+ could be in order of classfile appearance, hashtable order, etc.&nbsp; Hence,
247
+ the Java method chosen when there is more than one compatible method may vary
248
+ depending on the JVM.&nbsp; With the Netscape and Sun JVMs, it is possible
249
+ to change the behavior of an LC1/LC2 program by changing the order that Java
250
+ methods appear in a source file, thus changing the method enumeration order.</li>
251
+ <p>In LC3, a new method overload resolution algorithm is used.&nbsp; Informally,
252
+ the method with Java parameter types that most&nbsp; closely match the JavaScript
253
+ types is chosen.&nbsp; You can read all the gorey details in the <a href="http://www.mozilla.org/js/liveconnect/lc3_method_overloading.html">spec</a>.<BR>
254
+ <br>
255
+ &nbsp;
256
+ <li> There are several minor changes in error handling to make LiveConnect more
257
+ conformant to ECMAScript.&nbsp; These include, for example, making any attempt
258
+ to delete JavaObject, JavaClass or JavaPackage properties fail silently, rather
259
+ than causing an error.&nbsp; Also, some error messages have been changed to
260
+ be more informative.&nbsp; These changes should generally be backward-compatible
261
+ with LC1 because few programs that use LiveConnect will depend on the exact
262
+ behavior of LiveConnect when handling errors.</li>
263
+ </ul>
264
+
265
+ <h2> <a NAME="Limitations"></a>Limitations/Bugs/To-Do<BR>
266
+ </h2>
267
+ <ul>
268
+ <li> The efficiency of calling Java methods leaves something to be desired,
269
+ due to the convoluted nature of implementing native methods for JS.&nbsp;
270
+ JS_CloneFunctionObject() is called for every Java method invocation and the
271
+ inability to store private data in a JSFunction object requires that the method
272
+ table be searched twice instead of once for every invocation.<BR>
273
+ <BR>
274
+ </li>
275
+ <li> When Java objects are referenced from JS, they are entered into a hash
276
+ table, so as to ensure that the same JS Object wrapper is used every time
277
+ a particular Java object is reflected into JS.&nbsp; In this way, the behavior
278
+ of the JS '==' and '===' operators are preserved.&nbsp; Unfortunately, the
279
+ hash table may grow quite large (objects are only removed from the hash table
280
+ when finalized).&nbsp; In thread-safe systems, the hash table must be locked
281
+ when accessed, leading to slow performance. One alternate solution would be
282
+ to make it possible to overload JS's equality-test operators, so that the
283
+ hash table would no longer be required.<BR>
284
+ <BR>
285
+ </li>
286
+ <li> Initially, JavaClassDescriptor objectswere reference-counted to permit
287
+ free'ing of unused descriptors.&nbsp; However, it's relatively common to develop
288
+ cycles in the graph of JavaClassDescriptors, which leads to unused JavaClassDescriptors
289
+ that have non-zero reference counts. For that reason, JavaClassDescriptors
290
+ are not free'ed until JSJ_Shutdown().&nbsp; Luckily, the amount of memory
291
+ used by JavaClassDescriptors tends to be relatively small.<BR>
292
+ <BR>
293
+ </li>
294
+ <li> The LiveConnect API is designed to allow multiple JVMs to be used simultaneously
295
+ in the same executable (although each JSContext is limited to interaction
296
+ with at most one JVM).&nbsp; However, the API is not fully implemented.&nbsp;
297
+ For example, many global variables will need to become members of the JSJavaVM
298
+ struct so that they are stored on a per-JVM basis.<BR>
299
+ <BR>
300
+ </li>
301
+ <li> Java and JavaScript use independent garbage collection systems. A reference
302
+ between the two worlds must, therefore, take the form of a GC root. It's possible
303
+ to create uncollectable objects when cyclic graphs cross the boundary between
304
+ JS and Java, e.g. a JS object that refers to a Java object that refers back
305
+ to the original JS object. There is no simple solution to this dual-GC problem.
306
+ Luckily, such cyclic object graphs are extremely rare. </li>
307
+ </ul>
308
+
309
+ <h2>
310
+ <a NAME="Build_conventions"></a>Build conventions</h2>
311
+ <P>The following directions are for building the standalone version of LiveConnect.
312
+ To build the version that's used in the Mozilla browser, see the <A HREF="http://www.mozilla.org/docs/">Mozilla
313
+ build documentation</A>.</P>
314
+ <P>On all platforms, you must update your JVM's <tt>CLASSPATH</tt> to point to
315
+ the <tt>js/src/liveconnect/classes</tt> subdirectory.&nbsp; If you do not, LiveConnect
316
+ will still operate but with the limitation that JS objects may not be passed
317
+ as arguments of Java methods and it will not be possible to call from Java into
318
+ JavaScript, i.e. the <i>netscape.javascript.JSObject</i> class will be inaccessible.&nbsp;
319
+ Another downside of operating without these classes is that Java error messages
320
+ will not include a Java stack trace, when one is available.&nbsp; If your <tt>CLASSPATH</tt>
321
+ is set improperly, you will see a message like, "<tt>initialization error: Can't
322
+ load class netscape/javascript/JSObject</tt>" when starting a LiveConnect debug
323
+ build. </P>
324
+ <p>By default, all platforms build a version of LiveConnect that is <i>not</i>
325
+ threadsafe.&nbsp; If you require thread-safety, you must also populate the <tt>mozilla/dist</tt>
326
+ directory with <a href="http://www.mozilla.org/docs/tplist/catCode/nsprdesc.htm">NSPR</a>
327
+ headers and libraries.&nbsp; (NSPR implements a portable threading library,
328
+ among other things.&nbsp; The source is downloadable via <a href="http://www.mozilla.org/cvs.html">CVS</a>
329
+ from <tt><a href="http://lxr.mozilla.org/mozilla/source/nsprpub">mozilla/nsprpub</a></tt>.)&nbsp;
330
+ Next, you must define <tt>JS_THREADSAFE</tt> when building LiveConnect, either
331
+ on the command-line (gmake/nmake) or in a universal header file.&nbsp; Note
332
+ that JSRef must also be built with <tt>JS_THREADSAFE</tt>.
333
+ <p>One important note about building on Windows: There are two independent build
334
+ systems (in addition to the Mozilla browser build system). One of them uses
335
+ the IDE project files and the other uses gmake and makefiles. The former will
336
+ be preferred by most for debugging and the latter is more complete, since it
337
+ builds the necessary Java classes in addition to compiling the LiveConnect C
338
+ code.
339
+ <ul><b>Windows</b>
340
+ <ul>
341
+ <li>
342
+ Build the JS runtime and interpreter, <tt>js32.dll</tt>, by using the
343
+ <a href="http://lxr.mozilla.org/mozilla/source/js/src/README.html#Build">normal
344
+ JSRef build procedure</a>.</li> <li> Set the <tt>JDK</tt> environment variable to point to the top-level JDK directory,
345
+ e.g. <tt>D:\jdk1.1.5</tt>.&nbsp; This is used to establish paths for header
346
+ file inclusion, linking and execution.&nbsp; If you are not using Sun's
347
+ JVM, the project files may require manual tweaking to set these paths correctly.</li>
348
+
349
+ <li> Use MSVC 5 or MSVC 6 with the <tt>LiveConnectShell.dsw</tt> project file.&nbsp;
350
+ <font color="#993300">NOTE: makefile.win is an nmake file used only for
351
+ building the JS-engine in the Mozilla browser.&nbsp; Don't attempt to use
352
+ it to build the standalone JS-engine.</font></li>
353
+
354
+ <li>
355
+ The output files (DLLs and executables) are placed in either the <tt>js\src\liveconnect\Debug</tt>
356
+ or the <tt>js\src\liveconnect\Release</tt> directory.</li>
357
+
358
+ <li>
359
+ The LiveConnect-enabled shell is named <tt>lcshell.exe</tt> and appears
360
+ in the output directory.</li>
361
+
362
+ <li>
363
+ You must have the JVM DLL in your <tt><font size=+1>PATH</font></tt> environment
364
+ variable in order to run.&nbsp; If you are using the Sun JDK, the DLL appears
365
+ in the JDK's bin directory, e.g. <tt>D:\jdk1.1.5\bin\javai_g.dll</tt>.</li>
366
+
367
+ <li>
368
+ Use any Java compiler to compile the java source files in the <tt>js\src\liveconnect\classes\netscape\javascript</tt>
369
+ directory.</li>
370
+
371
+ <li> Update your JVM's <tt>CLASSPATH</tt> to point to the <tt>js\src\liveconnect\classes</tt>
372
+ subdirectory.&nbsp; (See above)<br>
373
+ <BR></li>
374
+ </ul>
375
+ <b>Mac OS</b>
376
+ <ul>
377
+ <li>
378
+ Using CodeWarrior Pro 3 is recommended, though the project files will probably
379
+ also work with CodeWarrior Pro 4.</li>
380
+
381
+ <li>
382
+ Install Apple's JVM, MRJ 2.0 (or later), and the <a href="ftp://dev.apple.com/devworld/Java/MRJSDK2.0.1EarlyAccess4.hqx">MRJ
383
+ SDK v2.0.1ea4</a>.&nbsp; Note: You do not need to install MRJ if you are
384
+ running a recent version of MacOS 8, since it is shipped with the OS.</li>
385
+
386
+ <li>
387
+ Copy the folders <tt>CIncludes</tt> &amp; <tt>Libraries</tt> from the SDK's
388
+ <tt>Interfaces&amp;Libraries</tt> directory to <tt>js:src:liveconnect:macbuild:JavaSession</tt>.</li>
389
+
390
+ <li>
391
+ Build the LiveConnect test application, <tt>LiveConnectShell</tt>, with
392
+ <tt>js:src:liveconnect:macbuild:LiveConnectShell.mcp</tt>.</li>
393
+
394
+ <li>
395
+ Build <tt>liveconnect.jar</tt> with <tt>js:src:liveconnect:macbuild:LiveConnect.mcp</tt>.</li>
396
+
397
+ <li>
398
+ Make an alias to <tt>liveconnect.jar</tt> and place it in "<tt>{SystemFolder}Extensions:MRJ
399
+ Libraries:MRJClasses</tt>".<br>
400
+ <BR></li>
401
+ </ul>
402
+ <b>Unix</b> (also works on Windows)
403
+ <ul>
404
+ <li> <font color="#000000">Use '<tt>gmake -f Makefile.ref</tt>' to build.
405
+ To compile optimized code, pass <tt>BUILD_OPT=1</tt> on the gmake command
406
+ line or preset it in the environment or <tt>Makefile.ref</tt>.&nbsp; </font><font color="#990000">NOTE:
407
+ Do not attempt to use <tt>Makefile</tt> to build.&nbsp; This file is used
408
+ only for building LiveConnect in the Mozilla browser.</font></li>
409
+ <li> <font color="#000000">Each platform on which LiveConnect is built must
410
+ have a *.mk configuration file in the <tt>js/src/liveconnect/config</tt>
411
+ directory.&nbsp; The configuration file specifies the JVM headers/libraries
412
+ used and allows for customization of command-line options.&nbsp; To date,
413
+ the build system has been tested on Solaris, AIX, HP/UX, OSF, IRIX, x86
414
+ Linux and Windows NT. Most platforms will work with either the vendor compiler
415
+ or gcc.</font></li>
416
+ <li>Update your JVM's <tt><font size=+1>CLASSPATH</font></tt> to point to
417
+ the <tt>js/src/liveconnect/classes</tt> subdirectory.&nbsp; (See above)</li>
418
+ </ul>
419
+ </ul>
420
+
421
+ <h2>
422
+ <a NAME="coding_conventions"></a>Naming and coding conventions:</h2>
423
+
424
+ <ul>
425
+ <li>
426
+ Public function names begin with JSJ_ followed by capitalized "intercaps",&nbsp;
427
+ e.g. JSJ_ConnectToJavaVM.</li>
428
+
429
+ <li>
430
+ Extern but library-private function names use a jsj_ prefix and mixed case,
431
+ e.g. jsj_LookupSymbol.</li>
432
+
433
+ <li>
434
+ Most static function names have unprefixed, underscore-separated names:
435
+ get_char.</li>
436
+
437
+ <li>
438
+ But static native methods of JS objects have intercaps names, e.g., JavaObject_getProperty().</li>
439
+
440
+ <li>
441
+ And library-private and static data use underscores, not intercaps (but
442
+ library-private data do use a js_ prefix).</li>
443
+
444
+ <li>
445
+ Scalar type names are lowercase and js-prefixed: jsdouble.</li>
446
+
447
+ <li>
448
+ Aggregate type names are JS-prefixed and mixed-case: JSObject.</li>
449
+
450
+ <li>
451
+ Macros are generally ALL_CAPS and underscored, to call out potential side
452
+ effects, multiple uses of a formal argument, etc.</li>
453
+
454
+ <li>
455
+ Four spaces of indentation per statement nesting level.&nbsp; The files
456
+ are space-filled, so adjusting of your tab setting should be unnecessary.</li>
457
+
458
+ <li>
459
+ I don't bow down to the ancient "80 columns per line" gods, since most
460
+ of us are not using vt100's to read source code.&nbsp; My rule of thumb
461
+ is to use no more than 95 columns per line, but exceptions are made to
462
+ format tables or table-like code.</li>
463
+
464
+ <li>
465
+ DLL entry points have their return type expanded within a JS_EXPORT_API()&nbsp;
466
+ macro call, to get the right Windows secret type qualifiers in the right
467
+ places for both 16- and 32-bit builds.</li>
468
+
469
+ <h2>
470
+ <a NAME="API"></a>The LiveConnect API</h2>
471
+ All public LiveConnect entry points and callbacks are documented in
472
+ <A HREF=http://lxr.mozilla.org/mozilla/source/js/src/liveconnect/jsjava.h>jsjava.h</A>,
473
+ the header file that exports those functions.
474
+ <br>&nbsp;
475
+ <h2>
476
+ <a NAME="File_walkthrough"></a>File walk-through</h2>
477
+ &nbsp;
478
+ <table BORDER=3 CELLSPACING=0 CELLPADDING=4 >
479
+ <tr>
480
+ <td>jsjava.h</td>
481
+
482
+ <td>LiveConnect's only public header file.&nbsp; Defines all public API
483
+ entry points, callbacks and types.&nbsp;</td>
484
+ </tr>
485
+
486
+ <tr>
487
+ <td>jsj_private.h</td>
488
+
489
+ <td>LiveConnect internal header file for intra-module sharing of functions
490
+ and types.</td>
491
+ </tr>
492
+
493
+ <tr>
494
+ <td>jsj.c</td>
495
+
496
+ <td>Public LiveConnect API entry points and initialization code. Handling
497
+ of multiple threads and multiple JVMs.</td>
498
+ </tr>
499
+
500
+ <tr>
501
+ <td>jsj_array.c</td>
502
+
503
+ <td>Read and write elements of a Java array, performing needed conversions
504
+ to/from JS types.</td>
505
+ </tr>
506
+
507
+ <tr>
508
+ <td>jsj_class.c</td>
509
+
510
+ <td>Construct and manipulate JavaClassDescriptor structs, which are the
511
+ native representation for Java classes.&nbsp; JavaClassDescriptors are
512
+ used to describe the methods and fields of a class, including their type
513
+ signatures, and include a reference to the peer <i>java.lang.Class</i>
514
+ object.&nbsp; Since each Java object has a class, there is a JavaClassDescriptor
515
+ associated with the JavaScript reflection of each Java Object.</td>
516
+ </tr>
517
+
518
+ <tr>
519
+ <td>jsj_convert.c</td>
520
+
521
+ <td>Convert between Java and JavaScript values of all types, which may
522
+ require calling routines in other files to wrap JS objects as Java objects
523
+ and vice-versa.</td>
524
+ </tr>
525
+
526
+ <tr>
527
+ <td>jsj_field.c</td>
528
+
529
+ <td>Reflect Java fields as properties of JavaObject objects and implement
530
+ getter/setter access to those fields.</td>
531
+ </tr>
532
+
533
+ <tr>
534
+ <td>jsj_JavaArray.c</td>
535
+
536
+ <td>Implementation of the JavaScript JavaArray class.&nbsp; Instances of
537
+ JavaArray are used to reflect Java arrays.</td>
538
+ </tr>
539
+
540
+ <tr>
541
+ <td>jsj_JavaClass.c</td>
542
+
543
+ <td>Implementation of the JavaScript JavaClass class.&nbsp;&nbsp; Instances
544
+ of JavaClass are used to reflect Java classes.</td>
545
+ </tr>
546
+
547
+ <tr>
548
+ <td>jsj_JavaObject.c</td>
549
+
550
+ <td>Implementation of the JavaScript JavaObject class.&nbsp;&nbsp; Instances
551
+ of JavaObject are used to reflect Java objects, except for Java arrays,
552
+ although some of the code in this file is used by the JavaArray code.</td>
553
+ </tr>
554
+
555
+ <tr>
556
+ <td>jsj_JavaMember.c</td>
557
+
558
+ <td>Implementation of the JavaScript JavaMember class.&nbsp; JavaMember's
559
+ are a strange beast required only to handle the special case of a public
560
+ field and a public method that appear in the same Java class and which
561
+ have the same name.</td>
562
+ </tr>
563
+
564
+ <tr>
565
+ <td>jsj_JavaPackage.c</td>
566
+
567
+ <td>Implementation of the JavaScript JavaPackage class.&nbsp;&nbsp; Instances
568
+ of JavaPackage are used to reflect Java packages.&nbsp; The JS properties
569
+ of a JavaPackage are either nested JavaPackage objects or a JavaClass object.</td>
570
+ </tr>
571
+
572
+ <tr>
573
+ <td>jsj_JSObject.c</td>
574
+
575
+ <td>Implementation of the native methods for the&nbsp; <i>netscape.javascript.JSObject</i>
576
+ Java class, which are used for calling into JavaScript from Java.&nbsp;
577
+ It also contains the code that wraps JS objects as instances of&nbsp; <i>netscape.javascript.JSObject
578
+ </i>and
579
+ the code that handles propagation of exceptions both into and out of Java.</td>
580
+ </tr>
581
+
582
+ <tr>
583
+ <td>jsj_method.c</td>
584
+
585
+ <td>Reflect Java methods as properties of JavaObject objects and make it
586
+ possible to invoke those methods.&nbsp; Includes overloaded method resolution
587
+ and argument/return-value conversion code.</td>
588
+ </tr>
589
+
590
+ <tr>
591
+ <td>jsj_utils.c</td>
592
+
593
+ <td>Low-level utility code for reporting errors, etc.</td>
594
+ </tr>
595
+ </table>
596
+
597
+ <h2>
598
+ <a NAME="sample_shell_interaction"></a>Sample LiveConnect shell interactions</h2>
599
+
600
+ <h4>
601
+ Java packages, classes and constructors</h4>
602
+ <tt>js> java</tt>
603
+ <br><tt>[JavaPackage java]</tt>
604
+ <br><tt>js> awt = java.awt</tt>
605
+ <br><tt>[JavaPackage java.awt]</tt>
606
+ <br><tt>js> Rectangle = awt.Rectangle</tt>
607
+ <br><tt>[JavaClass java.awt.Rectangle]</tt>
608
+ <h4>
609
+ Java instance fields and methods</h4>
610
+ <tt>js> r = new java.awt.Rectangle(34, 23)</tt>
611
+ <br><tt>java.awt.Rectangle[x=0,y=0,width=34,height=23]</tt>
612
+ <br><tt>js> r.width - r.height</tt>
613
+ <br><tt>11</tt>
614
+ <br><tt>js> r.x = 7; r.y = 4</tt>
615
+ <br><tt>4</tt>
616
+ <br><tt>js> r</tt>
617
+ <br><tt>java.awt.Rectangle[x=7,y=4,width=34,height=23]</tt>
618
+ <br><tt>js> r.grow(3)</tt>
619
+ <br><tt>There is no Java method java.awt.Rectangle.grow that matches JavaScript
620
+ argument types (number).</tt>
621
+ <br><tt>Candidate methods with the same name are:</tt>
622
+ <br><tt>&nbsp;&nbsp; void grow(int, int)</tt>
623
+ <p><tt>js> r.grow(3, 3)</tt>
624
+ <br><tt>js> r</tt>
625
+ <br><tt>java.awt.Rectangle[x=4,y=1,width=40,height=29]</tt>
626
+ <h4>
627
+ Java arrays</h4>
628
+ <tt>js> s = new java.lang.String("mastiff")</tt>
629
+ <br><tt>mastiff</tt>
630
+ <br><tt>js> c = s.toCharArray()</tt>
631
+ <br><tt>[C@298e9b</tt>
632
+ <br><tt>js> c[0] = "b"; c[4] = "a"; c[5] = "r"; c[6] = "d"</tt>
633
+ <br><tt>d</tt>
634
+ <br><tt>js> s2 = new java.lang.String(c)</tt>
635
+ <br><tt>bastard</tt>
636
+ <h4>
637
+ Java static fields and methods</h4>
638
+ <tt>js> java.lang.reflect.Modifier.ABSTRACT</tt>
639
+ <br><tt>1024</tt>
640
+ <br><tt>js> java.lang.Math.sin(3) + 2</tt>
641
+ <br><tt>2.1411200080598674</tt>
642
+ <h4>
643
+ Explicit resolution of overloaded Java methods</h4>
644
+ <tt>js> x = "23"</tt>
645
+ <br><tt>23</tt>
646
+ <br><tt>js> java.lang.Math.abs(x)</tt>
647
+ <br><tt>The choice of static Java method java.lang.Math.abs matching JavaScript
648
+ argument types (string) is ambiguous.</tt>
649
+ <br><tt>Candidate methods are:</tt>
650
+ <br><tt>&nbsp;&nbsp; long abs(long)</tt>
651
+ <br><tt>&nbsp;&nbsp; float abs(float)</tt>
652
+ <br><tt>&nbsp;&nbsp; double abs(double)</tt>
653
+ <br><tt>&nbsp;&nbsp; int abs(int)</tt>
654
+ <br><tt>js> abs = java.lang.Math["abs(int)"]</tt>
655
+ <p><tt>function abs(int)() {</tt>
656
+ <br><tt>&nbsp;&nbsp;&nbsp; [native code]</tt>
657
+ <br><tt>}</tt>
658
+ <p><tt>js> abs(x)</tt>
659
+ <br><tt>23</tt>
660
+ <h4>
661
+ Public Method/field enumeration</h4>
662
+ <tt>js> out = java.lang.System.out</tt>
663
+ <br><tt>java.io.PrintStream@2980f5</tt>
664
+ <br><tt>js> for (m in out) print(m)</tt>
665
+ <br><tt>println</tt>
666
+ <br><tt>print</tt>
667
+ <br><tt>checkError</tt>
668
+ <br><tt>close</tt>
669
+ <br><tt>flush</tt>
670
+ <br><tt>write</tt>
671
+ <br><tt>wait</tt>
672
+ <br><tt>notifyAll</tt>
673
+ <br><tt>notify</tt>
674
+ <br><tt>toString</tt>
675
+ <br><tt>equals</tt>
676
+ <br><tt>hashCode</tt>
677
+ <br><tt>getClass</tt>
678
+ <br><tt>js> for (m in java.lang.String) print(m)</tt>
679
+ <br><tt>copyValueOf</tt>
680
+ <br><tt>valueOf</tt>
681
+ <h4>
682
+ 'instanceof' and 'in' operators</h4>
683
+ <tt>js> s = new java.lang.String("foop")</tt>
684
+ <br><tt>foop</tt>
685
+ <br><tt>js> s instanceof java.lang.Class</tt>
686
+ <br><tt>false</tt>
687
+ <br><tt>js> s instanceof java.lang.Object</tt>
688
+ <br><tt>true</tt>
689
+ <br><tt>js> "valueOf" in s</tt>
690
+ <br><tt>true</tt>
691
+ <br><tt>js> "NoSuchThing" in s</tt>
692
+ <br><tt>false</tt>
693
+ <h4>
694
+ Applying JavaScript string methods to Java strings</h4>
695
+ <tt>js> s = new java.lang.String("The rain in Spain falls mainly on my
696
+ head.")</tt>
697
+ <br><tt>The rain in Spain falls mainly on my head.</tt>
698
+ <br><tt>js> s.match(/Spain.*my/)</tt>
699
+ <br><tt>Spain falls mainly on my</tt>
700
+ <h4>
701
+ Applying JavaScript array methods to Java arrays</h4>
702
+ <tt>js> s = new java.lang.String("JavaScript")</tt>
703
+ <br><tt>JavaScript</tt>
704
+ <br><tt>js> c = s.toCharArray()</tt>
705
+ <br><tt>[C@298aef</tt>
706
+ <br><tt>js> c.reverse()</tt>
707
+ <br><tt>[C@298aef</tt>
708
+ <br><tt>js> new java.lang.String(c)</tt>
709
+ <br><tt>tpircSavaJ</tt>
710
+ <br>&nbsp;
711
+ </body>
712
+ </html>