distil 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +28 -0
- data/VERSION +1 -0
- data/bin/distil +45 -0
- data/distil.gemspec +586 -0
- data/lib/bootstrap-template.js +56 -0
- data/lib/configurable.rb +125 -0
- data/lib/file-set.rb +42 -0
- data/lib/file-types/css-file.rb +75 -0
- data/lib/file-types/html-file.rb +11 -0
- data/lib/file-types/javascript-file.rb +98 -0
- data/lib/file-types/json-file.rb +14 -0
- data/lib/file-types/nib-file.rb +9 -0
- data/lib/jsdoc.conf +18 -0
- data/lib/jsl.conf +121 -0
- data/lib/project.rb +96 -0
- data/lib/source-file.rb +181 -0
- data/lib/target.rb +96 -0
- data/lib/task.rb +239 -0
- data/lib/tasks/copy-task.rb +21 -0
- data/lib/tasks/css-task.rb +18 -0
- data/lib/tasks/javascript-task.rb +125 -0
- data/lib/tasks/multiple-output-task.rb +134 -0
- data/lib/tasks/nib-task.rb +83 -0
- data/lib/tasks/output-task.rb +73 -0
- data/lib/tasks/single-output-task.rb +83 -0
- data/lib/tasks/test-task.rb +280 -0
- data/lib/test/HtmlTestReporter.js +127 -0
- data/lib/test/Test.js +248 -0
- data/lib/test/TestReporter.js +79 -0
- data/lib/test/TestRunner.js +132 -0
- data/lib/test/browser.rb +97 -0
- data/lib/test/scriptwrapper.html +10 -0
- data/lib/test/unittest.html +127 -0
- data/vendor/Makefile +35 -0
- data/vendor/extconf.rb +3 -0
- data/vendor/jsdoc-extras/plugins/distil-plugin.js +142 -0
- data/vendor/jsdoc-extras/plugins/interface-plugin.js +36 -0
- data/vendor/jsdoc-extras/templates/coherent/allclasses.tmpl +17 -0
- data/vendor/jsdoc-extras/templates/coherent/allfiles.tmpl +53 -0
- data/vendor/jsdoc-extras/templates/coherent/class.tmpl +803 -0
- data/vendor/jsdoc-extras/templates/coherent/index.tmpl +37 -0
- data/vendor/jsdoc-extras/templates/coherent/publish.js +242 -0
- data/vendor/jsdoc-extras/templates/coherent/showdown.js +421 -0
- data/vendor/jsdoc-extras/templates/coherent/static/code-footer.html +3 -0
- data/vendor/jsdoc-extras/templates/coherent/static/code-header.html +7 -0
- data/vendor/jsdoc-extras/templates/coherent/static/default.css +297 -0
- data/vendor/jsdoc-extras/templates/coherent/static/header.html +2 -0
- data/vendor/jsdoc-extras/templates/coherent/static/index.html +19 -0
- data/vendor/jsdoc-extras/templates/coherent/symbol.tmpl +35 -0
- data/vendor/jsdoc-toolkit/README.txt +183 -0
- data/vendor/jsdoc-toolkit/app/frame/Chain.js +102 -0
- data/vendor/jsdoc-toolkit/app/frame/Dumper.js +144 -0
- data/vendor/jsdoc-toolkit/app/frame/Hash.js +84 -0
- data/vendor/jsdoc-toolkit/app/frame/Link.js +171 -0
- data/vendor/jsdoc-toolkit/app/frame/Namespace.js +10 -0
- data/vendor/jsdoc-toolkit/app/frame/Opt.js +134 -0
- data/vendor/jsdoc-toolkit/app/frame/Reflection.js +26 -0
- data/vendor/jsdoc-toolkit/app/frame/String.js +93 -0
- data/vendor/jsdoc-toolkit/app/frame/Testrun.js +129 -0
- data/vendor/jsdoc-toolkit/app/frame.js +33 -0
- data/vendor/jsdoc-toolkit/app/handlers/FOODOC.js +26 -0
- data/vendor/jsdoc-toolkit/app/handlers/XMLDOC/DomReader.js +159 -0
- data/vendor/jsdoc-toolkit/app/handlers/XMLDOC/XMLDoc.js +16 -0
- data/vendor/jsdoc-toolkit/app/handlers/XMLDOC/XMLParse.js +292 -0
- data/vendor/jsdoc-toolkit/app/handlers/XMLDOC.js +26 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/DocComment.js +204 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/DocTag.js +300 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/JsDoc.js +126 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/JsPlate.js +109 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Lang.js +144 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Parser.js +144 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/PluginManager.js +33 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Symbol.js +644 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/SymbolSet.js +241 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/TextStream.js +41 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Token.js +18 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/TokenReader.js +332 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/TokenStream.js +133 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Util.js +32 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC/Walker.js +499 -0
- data/vendor/jsdoc-toolkit/app/lib/JSDOC.js +106 -0
- data/vendor/jsdoc-toolkit/app/main.js +129 -0
- data/vendor/jsdoc-toolkit/app/plugins/commentSrcJson.js +20 -0
- data/vendor/jsdoc-toolkit/app/plugins/frameworkPrototype.js +16 -0
- data/vendor/jsdoc-toolkit/app/plugins/functionCall.js +10 -0
- data/vendor/jsdoc-toolkit/app/plugins/publishSrcHilite.js +54 -0
- data/vendor/jsdoc-toolkit/app/plugins/symbolLink.js +10 -0
- data/vendor/jsdoc-toolkit/app/plugins/tagParamConfig.js +31 -0
- data/vendor/jsdoc-toolkit/app/plugins/tagSynonyms.js +43 -0
- data/vendor/jsdoc-toolkit/app/run.js +348 -0
- data/vendor/jsdoc-toolkit/app/t/TestDoc.js +144 -0
- data/vendor/jsdoc-toolkit/app/t/runner.js +13 -0
- data/vendor/jsdoc-toolkit/app/test/addon.js +24 -0
- data/vendor/jsdoc-toolkit/app/test/anon_inner.js +14 -0
- data/vendor/jsdoc-toolkit/app/test/augments.js +31 -0
- data/vendor/jsdoc-toolkit/app/test/augments2.js +26 -0
- data/vendor/jsdoc-toolkit/app/test/borrows.js +46 -0
- data/vendor/jsdoc-toolkit/app/test/borrows2.js +23 -0
- data/vendor/jsdoc-toolkit/app/test/config.js +22 -0
- data/vendor/jsdoc-toolkit/app/test/constructs.js +18 -0
- data/vendor/jsdoc-toolkit/app/test/encoding.js +10 -0
- data/vendor/jsdoc-toolkit/app/test/encoding_other.js +12 -0
- data/vendor/jsdoc-toolkit/app/test/event.js +54 -0
- data/vendor/jsdoc-toolkit/app/test/exports.js +14 -0
- data/vendor/jsdoc-toolkit/app/test/functions_anon.js +39 -0
- data/vendor/jsdoc-toolkit/app/test/functions_nested.js +33 -0
- data/vendor/jsdoc-toolkit/app/test/global.js +13 -0
- data/vendor/jsdoc-toolkit/app/test/globals.js +25 -0
- data/vendor/jsdoc-toolkit/app/test/ignore.js +10 -0
- data/vendor/jsdoc-toolkit/app/test/inner.js +16 -0
- data/vendor/jsdoc-toolkit/app/test/jsdoc_test.js +477 -0
- data/vendor/jsdoc-toolkit/app/test/lend.js +33 -0
- data/vendor/jsdoc-toolkit/app/test/memberof.js +19 -0
- data/vendor/jsdoc-toolkit/app/test/memberof2.js +38 -0
- data/vendor/jsdoc-toolkit/app/test/memberof3.js +33 -0
- data/vendor/jsdoc-toolkit/app/test/memberof_constructor.js +17 -0
- data/vendor/jsdoc-toolkit/app/test/module.js +17 -0
- data/vendor/jsdoc-toolkit/app/test/name.js +19 -0
- data/vendor/jsdoc-toolkit/app/test/namespace_nested.js +23 -0
- data/vendor/jsdoc-toolkit/app/test/nocode.js +13 -0
- data/vendor/jsdoc-toolkit/app/test/oblit_anon.js +20 -0
- data/vendor/jsdoc-toolkit/app/test/overview.js +20 -0
- data/vendor/jsdoc-toolkit/app/test/param_inline.js +37 -0
- data/vendor/jsdoc-toolkit/app/test/params_optional.js +8 -0
- data/vendor/jsdoc-toolkit/app/test/prototype.js +17 -0
- data/vendor/jsdoc-toolkit/app/test/prototype_nested.js +9 -0
- data/vendor/jsdoc-toolkit/app/test/prototype_oblit.js +13 -0
- data/vendor/jsdoc-toolkit/app/test/prototype_oblit_constructor.js +24 -0
- data/vendor/jsdoc-toolkit/app/test/public.js +10 -0
- data/vendor/jsdoc-toolkit/app/test/scripts/code.js +5 -0
- data/vendor/jsdoc-toolkit/app/test/scripts/notcode.txt +5 -0
- data/vendor/jsdoc-toolkit/app/test/shared.js +42 -0
- data/vendor/jsdoc-toolkit/app/test/shared2.js +2 -0
- data/vendor/jsdoc-toolkit/app/test/shortcuts.js +22 -0
- data/vendor/jsdoc-toolkit/app/test/static_this.js +13 -0
- data/vendor/jsdoc-toolkit/app/test/synonyms.js +31 -0
- data/vendor/jsdoc-toolkit/app/test/tosource.js +23 -0
- data/vendor/jsdoc-toolkit/app/test/variable_redefine.js +14 -0
- data/vendor/jsdoc-toolkit/app/test.js +342 -0
- data/vendor/jsdoc-toolkit/changes.txt +116 -0
- data/vendor/jsdoc-toolkit/conf/sample.conf +31 -0
- data/vendor/jsdoc-toolkit/java/build.xml +36 -0
- data/vendor/jsdoc-toolkit/java/build_1.4.xml +36 -0
- data/vendor/jsdoc-toolkit/java/classes/js.jar +0 -0
- data/vendor/jsdoc-toolkit/java/src/JsDebugRun.java +21 -0
- data/vendor/jsdoc-toolkit/java/src/JsRun.java +21 -0
- data/vendor/jsdoc-toolkit/jsdebug.jar +0 -0
- data/vendor/jsdoc-toolkit/jsrun.jar +0 -0
- data/vendor/jsdoc-toolkit/jsrun.sh +53 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/allclasses.tmpl +17 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/allfiles.tmpl +56 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/class.tmpl +649 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/index.tmpl +39 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/publish.js +201 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/static/code-footer.html +3 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/static/code-header.html +14 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/static/default.css +162 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/static/header.html +2 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/static/index.html +19 -0
- data/vendor/jsdoc-toolkit/templates/jsdoc/symbol.tmpl +35 -0
- data/vendor/jsl-0.3.0/src/JavaScriptLintAPI.cpp +333 -0
- data/vendor/jsl-0.3.0/src/JavaScriptLintAPI.h +86 -0
- data/vendor/jsl-0.3.0/src/Makefile.in +375 -0
- data/vendor/jsl-0.3.0/src/Makefile.ref +372 -0
- data/vendor/jsl-0.3.0/src/README.html +826 -0
- data/vendor/jsl-0.3.0/src/SpiderMonkey.rsp +12 -0
- data/vendor/jsl-0.3.0/src/_jsl_online.php +223 -0
- data/vendor/jsl-0.3.0/src/config/AIX4.1.mk +65 -0
- data/vendor/jsl-0.3.0/src/config/AIX4.2.mk +64 -0
- data/vendor/jsl-0.3.0/src/config/AIX4.3.mk +65 -0
- data/vendor/jsl-0.3.0/src/config/Darwin.mk +81 -0
- data/vendor/jsl-0.3.0/src/config/Darwin1.3.mk +81 -0
- data/vendor/jsl-0.3.0/src/config/Darwin1.4.mk +41 -0
- data/vendor/jsl-0.3.0/src/config/Darwin5.2.mk +81 -0
- data/vendor/jsl-0.3.0/src/config/Darwin5.3.mk +81 -0
- data/vendor/jsl-0.3.0/src/config/HP-UXB.10.10.mk +77 -0
- data/vendor/jsl-0.3.0/src/config/HP-UXB.10.20.mk +77 -0
- data/vendor/jsl-0.3.0/src/config/HP-UXB.11.00.mk +80 -0
- data/vendor/jsl-0.3.0/src/config/IRIX.mk +87 -0
- data/vendor/jsl-0.3.0/src/config/IRIX5.3.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/IRIX6.1.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/IRIX6.2.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/IRIX6.3.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/IRIX6.5.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/Linux_All.mk +103 -0
- data/vendor/jsl-0.3.0/src/config/Mac_OS10.0.mk +82 -0
- data/vendor/jsl-0.3.0/src/config/OSF1V4.0.mk +72 -0
- data/vendor/jsl-0.3.0/src/config/OSF1V5.0.mk +69 -0
- data/vendor/jsl-0.3.0/src/config/SunOS4.1.4.mk +101 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.3.mk +91 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.4.mk +92 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.5.1.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.5.mk +87 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.6.mk +89 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.7.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.8.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/SunOS5.9.mk +44 -0
- data/vendor/jsl-0.3.0/src/config/WINNT4.0.mk +112 -0
- data/vendor/jsl-0.3.0/src/config/WINNT5.0.mk +112 -0
- data/vendor/jsl-0.3.0/src/config/WINNT5.1.mk +112 -0
- data/vendor/jsl-0.3.0/src/config/WINNT5.2.mk +112 -0
- data/vendor/jsl-0.3.0/src/config/dgux.mk +64 -0
- data/vendor/jsl-0.3.0/src/config.mk +166 -0
- data/vendor/jsl-0.3.0/src/editline/Makefile.ref +144 -0
- data/vendor/jsl-0.3.0/src/editline/README +83 -0
- data/vendor/jsl-0.3.0/src/editline/editline.3 +175 -0
- data/vendor/jsl-0.3.0/src/editline/editline.c +1369 -0
- data/vendor/jsl-0.3.0/src/editline/editline.h +135 -0
- data/vendor/jsl-0.3.0/src/editline/sysunix.c +182 -0
- data/vendor/jsl-0.3.0/src/editline/unix.h +82 -0
- data/vendor/jsl-0.3.0/src/fdlibm/Makefile.in +127 -0
- data/vendor/jsl-0.3.0/src/fdlibm/Makefile.ref +192 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_acos.c +147 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_acosh.c +105 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_asin.c +156 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_atan2.c +165 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_atanh.c +110 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_cosh.c +133 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_exp.c +202 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_fmod.c +184 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_gamma.c +71 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_gamma_r.c +70 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_hypot.c +173 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_j0.c +524 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_j1.c +523 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_jn.c +315 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_lgamma.c +71 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_lgamma_r.c +347 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_log.c +184 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_log10.c +134 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_pow.c +386 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_rem_pio2.c +221 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_remainder.c +120 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_scalb.c +89 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_sinh.c +122 -0
- data/vendor/jsl-0.3.0/src/fdlibm/e_sqrt.c +497 -0
- data/vendor/jsl-0.3.0/src/fdlibm/fdlibm.dsp +160 -0
- data/vendor/jsl-0.3.0/src/fdlibm/fdlibm.h +273 -0
- data/vendor/jsl-0.3.0/src/fdlibm/fdlibm.mak +1453 -0
- data/vendor/jsl-0.3.0/src/fdlibm/fdlibm.mdp +0 -0
- data/vendor/jsl-0.3.0/src/fdlibm/k_cos.c +134 -0
- data/vendor/jsl-0.3.0/src/fdlibm/k_rem_pio2.c +354 -0
- data/vendor/jsl-0.3.0/src/fdlibm/k_sin.c +114 -0
- data/vendor/jsl-0.3.0/src/fdlibm/k_standard.c +785 -0
- data/vendor/jsl-0.3.0/src/fdlibm/k_tan.c +170 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_asinh.c +101 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_atan.c +175 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_cbrt.c +133 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_ceil.c +120 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_copysign.c +72 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_cos.c +118 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_erf.c +356 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_expm1.c +267 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_fabs.c +70 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_finite.c +71 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_floor.c +121 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_frexp.c +99 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_ilogb.c +85 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_isnan.c +74 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_ldexp.c +66 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_lib_version.c +73 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_log1p.c +211 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_logb.c +79 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_matherr.c +64 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_modf.c +132 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_nextafter.c +124 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_rint.c +131 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_scalbn.c +107 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_signgam.c +40 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_significand.c +68 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_sin.c +118 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_tan.c +112 -0
- data/vendor/jsl-0.3.0/src/fdlibm/s_tanh.c +122 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_acos.c +78 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_acosh.c +78 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_asin.c +80 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_atan2.c +79 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_atanh.c +81 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_cosh.c +77 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_exp.c +88 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_fmod.c +78 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_gamma.c +85 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_gamma_r.c +81 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_hypot.c +78 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_j0.c +105 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_j1.c +106 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_jn.c +128 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_lgamma.c +85 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_lgamma_r.c +81 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_log.c +78 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_log10.c +81 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_pow.c +99 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_remainder.c +77 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_scalb.c +95 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_sinh.c +77 -0
- data/vendor/jsl-0.3.0/src/fdlibm/w_sqrt.c +77 -0
- data/vendor/jsl-0.3.0/src/js.c +2447 -0
- data/vendor/jsl-0.3.0/src/js.dsp +420 -0
- data/vendor/jsl-0.3.0/src/js.mak +4025 -0
- data/vendor/jsl-0.3.0/src/js.mdp +0 -0
- data/vendor/jsl-0.3.0/src/js.msg +291 -0
- data/vendor/jsl-0.3.0/src/js.pkg +2 -0
- data/vendor/jsl-0.3.0/src/js3240.rc +79 -0
- data/vendor/jsl-0.3.0/src/jsOS240.def +654 -0
- data/vendor/jsl-0.3.0/src/jsapi.c +4405 -0
- data/vendor/jsl-0.3.0/src/jsapi.h +1856 -0
- data/vendor/jsl-0.3.0/src/jsarena.c +567 -0
- data/vendor/jsl-0.3.0/src/jsarena.h +302 -0
- data/vendor/jsl-0.3.0/src/jsarray.c +1428 -0
- data/vendor/jsl-0.3.0/src/jsarray.h +77 -0
- data/vendor/jsl-0.3.0/src/jsatom.c +927 -0
- data/vendor/jsl-0.3.0/src/jsatom.h +426 -0
- data/vendor/jsl-0.3.0/src/jsbit.h +113 -0
- data/vendor/jsl-0.3.0/src/jsbool.c +220 -0
- data/vendor/jsl-0.3.0/src/jsbool.h +62 -0
- data/vendor/jsl-0.3.0/src/jsclist.h +139 -0
- data/vendor/jsl-0.3.0/src/jscntxt.c +1036 -0
- data/vendor/jsl-0.3.0/src/jscntxt.h +608 -0
- data/vendor/jsl-0.3.0/src/jscompat.h +57 -0
- data/vendor/jsl-0.3.0/src/jsconfig.h +489 -0
- data/vendor/jsl-0.3.0/src/jsconfig.mk +181 -0
- data/vendor/jsl-0.3.0/src/jscpucfg.c +377 -0
- data/vendor/jsl-0.3.0/src/jscpucfg.h +204 -0
- data/vendor/jsl-0.3.0/src/jsdate.c +2238 -0
- data/vendor/jsl-0.3.0/src/jsdate.h +118 -0
- data/vendor/jsl-0.3.0/src/jsdbgapi.c +1260 -0
- data/vendor/jsl-0.3.0/src/jsdbgapi.h +345 -0
- data/vendor/jsl-0.3.0/src/jsdhash.c +763 -0
- data/vendor/jsl-0.3.0/src/jsdhash.h +579 -0
- data/vendor/jsl-0.3.0/src/jsdtoa.c +3135 -0
- data/vendor/jsl-0.3.0/src/jsdtoa.h +130 -0
- data/vendor/jsl-0.3.0/src/jsemit.c +4851 -0
- data/vendor/jsl-0.3.0/src/jsemit.h +576 -0
- data/vendor/jsl-0.3.0/src/jsexn.c +1084 -0
- data/vendor/jsl-0.3.0/src/jsexn.h +102 -0
- data/vendor/jsl-0.3.0/src/jsfile.c +2610 -0
- data/vendor/jsl-0.3.0/src/jsfile.h +50 -0
- data/vendor/jsl-0.3.0/src/jsfile.msg +89 -0
- data/vendor/jsl-0.3.0/src/jsfun.c +2015 -0
- data/vendor/jsl-0.3.0/src/jsfun.h +158 -0
- data/vendor/jsl-0.3.0/src/jsgc.c +1441 -0
- data/vendor/jsl-0.3.0/src/jsgc.h +230 -0
- data/vendor/jsl-0.3.0/src/jshash.c +471 -0
- data/vendor/jsl-0.3.0/src/jshash.h +152 -0
- data/vendor/jsl-0.3.0/src/jsify.pl +485 -0
- data/vendor/jsl-0.3.0/src/jsinterp.c +4797 -0
- data/vendor/jsl-0.3.0/src/jsinterp.h +302 -0
- data/vendor/jsl-0.3.0/src/jsl-test.js +28 -0
- data/vendor/jsl-0.3.0/src/jsl.c +2371 -0
- data/vendor/jsl-0.3.0/src/jsl.conf +127 -0
- data/vendor/jsl-0.3.0/src/jsl.conf.old +124 -0
- data/vendor/jsl-0.3.0/src/jsl.dsp +242 -0
- data/vendor/jsl-0.3.0/src/jsl.dsw +59 -0
- data/vendor/jsl-0.3.0/src/jslibmath.h +290 -0
- data/vendor/jsl-0.3.0/src/jslock.c +1261 -0
- data/vendor/jsl-0.3.0/src/jslock.h +289 -0
- data/vendor/jsl-0.3.0/src/jslocko.asm +59 -0
- data/vendor/jsl-0.3.0/src/jslog2.c +83 -0
- data/vendor/jsl-0.3.0/src/jslong.c +281 -0
- data/vendor/jsl-0.3.0/src/jslong.h +437 -0
- data/vendor/jsl-0.3.0/src/jsmath.c +477 -0
- data/vendor/jsl-0.3.0/src/jsmath.h +55 -0
- data/vendor/jsl-0.3.0/src/jsnum.c +1148 -0
- data/vendor/jsl-0.3.0/src/jsnum.h +257 -0
- data/vendor/jsl-0.3.0/src/jsobj.c +4066 -0
- data/vendor/jsl-0.3.0/src/jsobj.h +475 -0
- data/vendor/jsl-0.3.0/src/jsopcode.c +2730 -0
- data/vendor/jsl-0.3.0/src/jsopcode.h +275 -0
- data/vendor/jsl-0.3.0/src/jsopcode.tbl +344 -0
- data/vendor/jsl-0.3.0/src/jsosdep.h +127 -0
- data/vendor/jsl-0.3.0/src/jsotypes.h +211 -0
- data/vendor/jsl-0.3.0/src/jsparse.c +4438 -0
- data/vendor/jsl-0.3.0/src/jsparse.h +345 -0
- data/vendor/jsl-0.3.0/src/jsprf.c +1212 -0
- data/vendor/jsl-0.3.0/src/jsprf.h +148 -0
- data/vendor/jsl-0.3.0/src/jsprvtd.h +174 -0
- data/vendor/jsl-0.3.0/src/jspubtd.h +586 -0
- data/vendor/jsl-0.3.0/src/jsregexp.c +3831 -0
- data/vendor/jsl-0.3.0/src/jsregexp.h +180 -0
- data/vendor/jsl-0.3.0/src/jsscan.c +1814 -0
- data/vendor/jsl-0.3.0/src/jsscan.h +267 -0
- data/vendor/jsl-0.3.0/src/jsscope.c +1639 -0
- data/vendor/jsl-0.3.0/src/jsscope.h +389 -0
- data/vendor/jsl-0.3.0/src/jsscript.c +1284 -0
- data/vendor/jsl-0.3.0/src/jsscript.h +179 -0
- data/vendor/jsl-0.3.0/src/jsshell.msg +50 -0
- data/vendor/jsl-0.3.0/src/jsstddef.h +83 -0
- data/vendor/jsl-0.3.0/src/jsstr.c +4502 -0
- data/vendor/jsl-0.3.0/src/jsstr.h +448 -0
- data/vendor/jsl-0.3.0/src/jstypes.h +391 -0
- data/vendor/jsl-0.3.0/src/jsutil.c +157 -0
- data/vendor/jsl-0.3.0/src/jsutil.h +75 -0
- data/vendor/jsl-0.3.0/src/jsxdrapi.c +686 -0
- data/vendor/jsl-0.3.0/src/jsxdrapi.h +193 -0
- data/vendor/jsl-0.3.0/src/liveconnect/LiveConnect.dsp +157 -0
- data/vendor/jsl-0.3.0/src/liveconnect/LiveConnectShell.dsp +120 -0
- data/vendor/jsl-0.3.0/src/liveconnect/LiveConnectShell.dsw +44 -0
- data/vendor/jsl-0.3.0/src/liveconnect/Makefile.in +106 -0
- data/vendor/jsl-0.3.0/src/liveconnect/Makefile.ref +169 -0
- data/vendor/jsl-0.3.0/src/liveconnect/README.html +719 -0
- data/vendor/jsl-0.3.0/src/liveconnect/_jni/netscape_javascript_JSException.h +14 -0
- data/vendor/jsl-0.3.0/src/liveconnect/_jni/netscape_javascript_JSObject.h +155 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/Makefile.in +89 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/Makefile.ref +57 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/Makefile.ref +47 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/JSException.java +140 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/JSObject.java +183 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/JSProxy.java +58 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/JSRunnable.java +70 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/JSUtil.java +59 -0
- data/vendor/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/Makefile.ref +53 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/AIX4.1.mk +45 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/AIX4.2.mk +45 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/AIX4.3.mk +50 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/HP-UXB.10.10.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/HP-UXB.10.20.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/HP-UXB.11.00.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/IRIX6.2.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/IRIX6.3.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/IRIX6.5.mk +43 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/Linux_All.mk +73 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/OSF1V4.0.mk +65 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/OSF1V5.0.mk +62 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/SunOS5.5.1.mk +55 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/SunOS5.6.mk +39 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/SunOS5.7.mk +39 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/SunOS5.8.mk +39 -0
- data/vendor/jsl-0.3.0/src/liveconnect/config/WINNT4.0.mk +53 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj.c +884 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj.msg +98 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JSObject.c +1379 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JavaArray.c +481 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JavaClass.c +749 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JavaMember.c +186 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JavaObject.c +1099 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_JavaPackage.c +548 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_array.c +207 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_class.c +765 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_convert.c +954 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_field.c +421 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_hash.c +504 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_hash.h +161 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_method.c +1823 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_nodl.c +1 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_private.h +689 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_simpleapi.c +219 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsj_utils.c +513 -0
- data/vendor/jsl-0.3.0/src/liveconnect/jsjava.h +313 -0
- data/vendor/jsl-0.3.0/src/liveconnect/liveconnect.pkg +3 -0
- data/vendor/jsl-0.3.0/src/liveconnect/netscape_javascript_JSObject.h +155 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsCLiveconnect.cpp +785 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsCLiveconnect.h +197 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsCLiveconnectFactory.cpp +163 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsCLiveconnectFactory.h +76 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsILiveconnect.h +195 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsISecureLiveconnect.h +84 -0
- data/vendor/jsl-0.3.0/src/liveconnect/nsISecurityContext.h +135 -0
- data/vendor/jsl-0.3.0/src/liveconnect/win32.order +6 -0
- data/vendor/jsl-0.3.0/src/lock_SunOS.s +114 -0
- data/vendor/jsl-0.3.0/src/perfect.js +39 -0
- data/vendor/jsl-0.3.0/src/perlconnect/JS.def +6 -0
- data/vendor/jsl-0.3.0/src/perlconnect/JS.dsp +107 -0
- data/vendor/jsl-0.3.0/src/perlconnect/JS.pm +318 -0
- data/vendor/jsl-0.3.0/src/perlconnect/JS.xs +1050 -0
- data/vendor/jsl-0.3.0/src/perlconnect/Makefile.PL +67 -0
- data/vendor/jsl-0.3.0/src/perlconnect/Makefile.ref +152 -0
- data/vendor/jsl-0.3.0/src/perlconnect/PerlConnect.dsp +103 -0
- data/vendor/jsl-0.3.0/src/perlconnect/PerlConnect.dsw +59 -0
- data/vendor/jsl-0.3.0/src/perlconnect/PerlConnect.pm +126 -0
- data/vendor/jsl-0.3.0/src/perlconnect/PerlConnectShell.dsp +89 -0
- data/vendor/jsl-0.3.0/src/perlconnect/README.html +345 -0
- data/vendor/jsl-0.3.0/src/perlconnect/bg.jpg +0 -0
- data/vendor/jsl-0.3.0/src/perlconnect/jsperl.c +1100 -0
- data/vendor/jsl-0.3.0/src/perlconnect/jsperl.h +52 -0
- data/vendor/jsl-0.3.0/src/perlconnect/jsperlbuild.pl +81 -0
- data/vendor/jsl-0.3.0/src/perlconnect/jsperlpvt.h +57 -0
- data/vendor/jsl-0.3.0/src/perlconnect/test.js +73 -0
- data/vendor/jsl-0.3.0/src/perlconnect/test.pl +244 -0
- data/vendor/jsl-0.3.0/src/perlconnect/typemap +121 -0
- data/vendor/jsl-0.3.0/src/plify_jsdhash.sed +31 -0
- data/vendor/jsl-0.3.0/src/prmjtime.c +646 -0
- data/vendor/jsl-0.3.0/src/prmjtime.h +95 -0
- data/vendor/jsl-0.3.0/src/resource.h +15 -0
- data/vendor/jsl-0.3.0/src/rules.mk +193 -0
- data/vendor/jsl-0.3.0/src/win32.order +391 -0
- data/vendor/jsl-0.3.0/tests/conf/always_use_option_explicit.js +4 -0
- data/vendor/jsl-0.3.0/tests/conf/define.js +8 -0
- data/vendor/jsl-0.3.0/tests/conf/jscript_function_extensions-1.js +7 -0
- data/vendor/jsl-0.3.0/tests/conf/jscript_function_extensions-2.js +8 -0
- data/vendor/jsl-0.3.0/tests/conf/jscript_function_extensions-3.js +27 -0
- data/vendor/jsl-0.3.0/tests/conf/jscript_function_extensions-4.js +4 -0
- data/vendor/jsl-0.3.0/tests/conf/lambda_assign_requires_semicolon.js +24 -0
- data/vendor/jsl-0.3.0/tests/conf/legacy_control_comments.js +8 -0
- data/vendor/jsl-0.3.0/tests/control_comments/control_comments.js +33 -0
- data/vendor/jsl-0.3.0/tests/control_comments/declare.js +26 -0
- data/vendor/jsl-0.3.0/tests/control_comments/import-overflow.js +9 -0
- data/vendor/jsl-0.3.0/tests/control_comments/import.js +5 -0
- data/vendor/jsl-0.3.0/tests/control_comments/import2.js +2 -0
- data/vendor/jsl-0.3.0/tests/control_comments/invalid_fallthru.js +13 -0
- data/vendor/jsl-0.3.0/tests/control_comments/option_explicit-with.js +12 -0
- data/vendor/jsl-0.3.0/tests/control_comments/option_explicit.js +64 -0
- data/vendor/jsl-0.3.0/tests/errors/unterminated_comment.js +8 -0
- data/vendor/jsl-0.3.0/tests/html/script_tag_in_js_literal.html +14 -0
- data/vendor/jsl-0.3.0/tests/run_tests.pl +71 -0
- data/vendor/jsl-0.3.0/tests/warnings/ambiguous_else_stmt.js +21 -0
- data/vendor/jsl-0.3.0/tests/warnings/ambiguous_nested_stmt.js +66 -0
- data/vendor/jsl-0.3.0/tests/warnings/ambiguous_newline.js +261 -0
- data/vendor/jsl-0.3.0/tests/warnings/anon_no_return_value.js +26 -0
- data/vendor/jsl-0.3.0/tests/warnings/assign_to_function_call.js +16 -0
- data/vendor/jsl-0.3.0/tests/warnings/block_without_braces.js +13 -0
- data/vendor/jsl-0.3.0/tests/warnings/comma_separated_stmts.js +17 -0
- data/vendor/jsl-0.3.0/tests/warnings/comparison_type_conv.js +44 -0
- data/vendor/jsl-0.3.0/tests/warnings/default_not_at_end.js +15 -0
- data/vendor/jsl-0.3.0/tests/warnings/dup_option_explicit.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/duplicate_case_in_switch.js +62 -0
- data/vendor/jsl-0.3.0/tests/warnings/duplicate_formal.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/empty_statement.js +29 -0
- data/vendor/jsl-0.3.0/tests/warnings/equal_as_assign.js +7 -0
- data/vendor/jsl-0.3.0/tests/warnings/inc_dec_within_stmt-ignore.js +21 -0
- data/vendor/jsl-0.3.0/tests/warnings/inc_dec_within_stmt.js +63 -0
- data/vendor/jsl-0.3.0/tests/warnings/jsl_cc_not_understood.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/leading_decimal_point.js +7 -0
- data/vendor/jsl-0.3.0/tests/warnings/legacy_cc_not_understood.js +9 -0
- data/vendor/jsl-0.3.0/tests/warnings/meaningless_block.js +12 -0
- data/vendor/jsl-0.3.0/tests/warnings/misplaced_regex.js +20 -0
- data/vendor/jsl-0.3.0/tests/warnings/missing_break.js +87 -0
- data/vendor/jsl-0.3.0/tests/warnings/missing_break_for_last_case.js +19 -0
- data/vendor/jsl-0.3.0/tests/warnings/missing_default_case.js +51 -0
- data/vendor/jsl-0.3.0/tests/warnings/missing_option_explicit.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/missing_semicolon.js +19 -0
- data/vendor/jsl-0.3.0/tests/warnings/multiple_plus_minus.js +10 -0
- data/vendor/jsl-0.3.0/tests/warnings/nested_comment.js +6 -0
- data/vendor/jsl-0.3.0/tests/warnings/no_return_value.js +25 -0
- data/vendor/jsl-0.3.0/tests/warnings/octal_number.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/parseint_missing_radix.js +15 -0
- data/vendor/jsl-0.3.0/tests/warnings/partial_option_explicit.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/redeclared_var.js +10 -0
- data/vendor/jsl-0.3.0/tests/warnings/spidermonkey/bad_backref.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/spidermonkey/deprecated_usage.js +11 -0
- data/vendor/jsl-0.3.0/tests/warnings/spidermonkey/invalid_backref.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/spidermonkey/trailing_comma.js +5 -0
- data/vendor/jsl-0.3.0/tests/warnings/trailing_comma_in_array.js +8 -0
- data/vendor/jsl-0.3.0/tests/warnings/trailing_decimal_point.js +7 -0
- data/vendor/jsl-0.3.0/tests/warnings/unreachable_code.js +29 -0
- data/vendor/jsl-0.3.0/tests/warnings/use_of_label.js +19 -0
- data/vendor/jsl-0.3.0/tests/warnings/useless_assign.js +20 -0
- data/vendor/jsl-0.3.0/tests/warnings/useless_comparison.js +55 -0
- data/vendor/jsl-0.3.0/tests/warnings/useless_void.js +6 -0
- data/vendor/jsl-0.3.0/tests/warnings/var_hides_arg.js +4 -0
- data/vendor/jsl-0.3.0/tests/warnings/with_statement.js +7 -0
- data/vendor/yuicompressor-2.4.2.jar +0 -0
- metadata +605 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include "jni.h"
|
|
3
|
+
|
|
4
|
+
/* Header for class netscape_javascript_JSException */
|
|
5
|
+
|
|
6
|
+
#ifndef _Included_netscape_javascript_JSException
|
|
7
|
+
#define _Included_netscape_javascript_JSException
|
|
8
|
+
#ifdef __cplusplus
|
|
9
|
+
extern "C" {
|
|
10
|
+
#endif
|
|
11
|
+
#ifdef __cplusplus
|
|
12
|
+
}
|
|
13
|
+
#endif
|
|
14
|
+
#endif
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
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
|
+
* This file is part of the Java-vendor-neutral implementation of LiveConnect
|
|
42
|
+
*
|
|
43
|
+
* Declarations of private (internal) functions/data/types for
|
|
44
|
+
* JavaScript <==> Java communication.
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
|
|
48
|
+
#include <jni.h>
|
|
49
|
+
/* Header for class netscape_javascript_JSObject */
|
|
50
|
+
|
|
51
|
+
#ifndef _Included_netscape_javascript_JSObject
|
|
52
|
+
#define _Included_netscape_javascript_JSObject
|
|
53
|
+
#ifdef __cplusplus
|
|
54
|
+
extern "C" {
|
|
55
|
+
#endif
|
|
56
|
+
/*
|
|
57
|
+
* Class: netscape_javascript_JSObject
|
|
58
|
+
* Method: initClass
|
|
59
|
+
* Signature: ()V
|
|
60
|
+
*/
|
|
61
|
+
JNIEXPORT void JNICALL Java_netscape_javascript_JSObject_initClass
|
|
62
|
+
(JNIEnv *, jclass);
|
|
63
|
+
|
|
64
|
+
/*
|
|
65
|
+
* Class: netscape_javascript_JSObject
|
|
66
|
+
* Method: getMember
|
|
67
|
+
* Signature: (Ljava/lang/String;)Ljava/lang/Object;
|
|
68
|
+
*/
|
|
69
|
+
JNIEXPORT jobject JNICALL Java_netscape_javascript_JSObject_getMember
|
|
70
|
+
(JNIEnv *, jobject, jstring);
|
|
71
|
+
|
|
72
|
+
/*
|
|
73
|
+
* Class: netscape_javascript_JSObject
|
|
74
|
+
* Method: getSlot
|
|
75
|
+
* Signature: (I)Ljava/lang/Object;
|
|
76
|
+
*/
|
|
77
|
+
JNIEXPORT jobject JNICALL Java_netscape_javascript_JSObject_getSlot
|
|
78
|
+
(JNIEnv *, jobject, jint);
|
|
79
|
+
|
|
80
|
+
/*
|
|
81
|
+
* Class: netscape_javascript_JSObject
|
|
82
|
+
* Method: setMember
|
|
83
|
+
* Signature: (Ljava/lang/String;Ljava/lang/Object;)V
|
|
84
|
+
*/
|
|
85
|
+
JNIEXPORT void JNICALL Java_netscape_javascript_JSObject_setMember
|
|
86
|
+
(JNIEnv *, jobject, jstring, jobject);
|
|
87
|
+
|
|
88
|
+
/*
|
|
89
|
+
* Class: netscape_javascript_JSObject
|
|
90
|
+
* Method: setSlot
|
|
91
|
+
* Signature: (ILjava/lang/Object;)V
|
|
92
|
+
*/
|
|
93
|
+
JNIEXPORT void JNICALL Java_netscape_javascript_JSObject_setSlot
|
|
94
|
+
(JNIEnv *, jobject, jint, jobject);
|
|
95
|
+
|
|
96
|
+
/*
|
|
97
|
+
* Class: netscape_javascript_JSObject
|
|
98
|
+
* Method: removeMember
|
|
99
|
+
* Signature: (Ljava/lang/String;)V
|
|
100
|
+
*/
|
|
101
|
+
JNIEXPORT void JNICALL Java_netscape_javascript_JSObject_removeMember
|
|
102
|
+
(JNIEnv *, jobject, jstring);
|
|
103
|
+
|
|
104
|
+
/*
|
|
105
|
+
* Class: netscape_javascript_JSObject
|
|
106
|
+
* Method: call
|
|
107
|
+
* Signature: (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/Object;
|
|
108
|
+
*/
|
|
109
|
+
JNIEXPORT jobject JNICALL Java_netscape_javascript_JSObject_call
|
|
110
|
+
(JNIEnv *, jobject, jstring, jobjectArray);
|
|
111
|
+
|
|
112
|
+
/*
|
|
113
|
+
* Class: netscape_javascript_JSObject
|
|
114
|
+
* Method: eval
|
|
115
|
+
* Signature: (Ljava/lang/String;)Ljava/lang/Object;
|
|
116
|
+
*/
|
|
117
|
+
JNIEXPORT jobject JNICALL Java_netscape_javascript_JSObject_eval
|
|
118
|
+
(JNIEnv *, jobject, jstring);
|
|
119
|
+
|
|
120
|
+
/*
|
|
121
|
+
* Class: netscape_javascript_JSObject
|
|
122
|
+
* Method: toString
|
|
123
|
+
* Signature: ()Ljava/lang/String;
|
|
124
|
+
*/
|
|
125
|
+
JNIEXPORT jstring JNICALL Java_netscape_javascript_JSObject_toString
|
|
126
|
+
(JNIEnv *, jobject);
|
|
127
|
+
|
|
128
|
+
/*
|
|
129
|
+
* Class: netscape_javascript_JSObject
|
|
130
|
+
* Method: getWindow
|
|
131
|
+
* Signature: (Ljava/applet/Applet;)Lnetscape/javascript/JSObject;
|
|
132
|
+
*/
|
|
133
|
+
JNIEXPORT jobject JNICALL Java_netscape_javascript_JSObject_getWindow
|
|
134
|
+
(JNIEnv *, jclass, jobject);
|
|
135
|
+
|
|
136
|
+
/*
|
|
137
|
+
* Class: netscape_javascript_JSObject
|
|
138
|
+
* Method: finalize
|
|
139
|
+
* Signature: ()V
|
|
140
|
+
*/
|
|
141
|
+
JNIEXPORT void JNICALL Java_netscape_javascript_JSObject_finalize
|
|
142
|
+
(JNIEnv *, jobject);
|
|
143
|
+
|
|
144
|
+
/*
|
|
145
|
+
* Class: netscape_javascript_JSObject
|
|
146
|
+
* Method: equals
|
|
147
|
+
* Signature: (Ljava/lang/Object;)Z
|
|
148
|
+
*/
|
|
149
|
+
JNIEXPORT jboolean JNICALL Java_netscape_javascript_JSObject_equals
|
|
150
|
+
(JNIEnv *, jobject, jobject);
|
|
151
|
+
|
|
152
|
+
#ifdef __cplusplus
|
|
153
|
+
}
|
|
154
|
+
#endif
|
|
155
|
+
#endif
|
|
@@ -0,0 +1,89 @@
|
|
|
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 = java
|
|
47
|
+
|
|
48
|
+
#
|
|
49
|
+
# the idea is that the install phase for those modules will
|
|
50
|
+
# make their own signed jar files
|
|
51
|
+
# there are some exceptions here that we deal with
|
|
52
|
+
# stuff in modules and in ns/js/jsj
|
|
53
|
+
#
|
|
54
|
+
JMODS = netscape/javascript netscape/javascript/adapters
|
|
55
|
+
|
|
56
|
+
#
|
|
57
|
+
# JDIRS is dependant on JAVA_DESTPATH in config/rules.m[a]k.
|
|
58
|
+
# Be sure to touch that directory if you add a new directory to
|
|
59
|
+
# JDIRS, or else it will not build. FIXME
|
|
60
|
+
#
|
|
61
|
+
JDIRS = $(JMODS)
|
|
62
|
+
|
|
63
|
+
JAR_JSJ = jsj10.jar
|
|
64
|
+
JAR_JSJ_CLASSES = $(JMODS)
|
|
65
|
+
|
|
66
|
+
#
|
|
67
|
+
# jars to build at install time
|
|
68
|
+
#
|
|
69
|
+
JARS = $(JAR_JSJ)
|
|
70
|
+
|
|
71
|
+
include $(topsrcdir)/config/rules.mk
|
|
72
|
+
|
|
73
|
+
JAVA_SOURCEPATH = $(topsrcdir)/js/src/liveconnect/classes
|
|
74
|
+
|
|
75
|
+
doc::
|
|
76
|
+
$(JAVADOC) -d $(DIST)/doc netscape.javascript
|
|
77
|
+
|
|
78
|
+
natives_list:: FORCE
|
|
79
|
+
rm -rf $@
|
|
80
|
+
find . -name "*.class" -print | sed 's@\./\(.*\)\.class$$@\1@' | \
|
|
81
|
+
sed 's@/@.@g' | xargs $(JVH) -natives | sort > $@
|
|
82
|
+
|
|
83
|
+
check_natives:: natives_list
|
|
84
|
+
rm -f found_natives
|
|
85
|
+
nm -B ../*.o \
|
|
86
|
+
| egrep "Java.*_stub" | awk '{ print $$3; }' | sort > found_natives
|
|
87
|
+
diff found_natives natives_list
|
|
88
|
+
|
|
89
|
+
FORCE:
|
|
@@ -0,0 +1,57 @@
|
|
|
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
|
+
DEPTH = ../..
|
|
41
|
+
|
|
42
|
+
include $(DEPTH)/config.mk
|
|
43
|
+
JAR = $(JDK)/bin/jar
|
|
44
|
+
include $(DEPTH)/liveconnect/config/$(OS_CONFIG).mk
|
|
45
|
+
|
|
46
|
+
JARS = $(LCJAR)
|
|
47
|
+
|
|
48
|
+
JARS := $(addprefix $(CLASSDIR)/$(OBJDIR)/, $(JARS))
|
|
49
|
+
|
|
50
|
+
PREDIRS = netscape
|
|
51
|
+
TARGETS += $(JARS)
|
|
52
|
+
|
|
53
|
+
include $(DEPTH)/rules.mk
|
|
54
|
+
|
|
55
|
+
$(CLASSDIR)/$(OBJDIR)/$(LCJAR):
|
|
56
|
+
cd $(CLASSDIR)/$(OBJDIR) ; \
|
|
57
|
+
$(JAR) cvf $(@F) netscape
|
|
@@ -0,0 +1,47 @@
|
|
|
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
|
+
DEPTH = ../../..
|
|
41
|
+
|
|
42
|
+
include $(DEPTH)/config.mk
|
|
43
|
+
include $(DEPTH)/liveconnect/config/$(OS_CONFIG).mk
|
|
44
|
+
|
|
45
|
+
DIRS = javascript
|
|
46
|
+
|
|
47
|
+
include $(DEPTH)/rules.mk
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
/* -*- Mode: Java; tab-width: 8; c-basic-offset: 4 -*-
|
|
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
|
+
package netscape.javascript;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* JSException is an exception which is thrown when JavaScript code
|
|
44
|
+
* returns an error.
|
|
45
|
+
*/
|
|
46
|
+
|
|
47
|
+
public
|
|
48
|
+
class JSException extends RuntimeException {
|
|
49
|
+
public static final int EXCEPTION_TYPE_EMPTY = -1;
|
|
50
|
+
public static final int EXCEPTION_TYPE_VOID = 0;
|
|
51
|
+
public static final int EXCEPTION_TYPE_OBJECT = 1;
|
|
52
|
+
public static final int EXCEPTION_TYPE_FUNCTION = 2;
|
|
53
|
+
public static final int EXCEPTION_TYPE_STRING = 3;
|
|
54
|
+
public static final int EXCEPTION_TYPE_NUMBER = 4;
|
|
55
|
+
public static final int EXCEPTION_TYPE_BOOLEAN = 5;
|
|
56
|
+
public static final int EXCEPTION_TYPE_ERROR = 6;
|
|
57
|
+
|
|
58
|
+
String filename;
|
|
59
|
+
int lineno;
|
|
60
|
+
String source;
|
|
61
|
+
int tokenIndex;
|
|
62
|
+
private int wrappedExceptionType;
|
|
63
|
+
private Object wrappedException;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Constructs a JSException without a detail message.
|
|
67
|
+
* A detail message is a String that describes this particular exception.
|
|
68
|
+
*
|
|
69
|
+
* @deprecated Not for public use in future versions.
|
|
70
|
+
*/
|
|
71
|
+
public JSException() {
|
|
72
|
+
super();
|
|
73
|
+
filename = "unknown";
|
|
74
|
+
lineno = 0;
|
|
75
|
+
source = "";
|
|
76
|
+
tokenIndex = 0;
|
|
77
|
+
wrappedExceptionType = EXCEPTION_TYPE_EMPTY;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Constructs a JSException with a detail message.
|
|
82
|
+
* A detail message is a String that describes this particular exception.
|
|
83
|
+
* @param s the detail message
|
|
84
|
+
*
|
|
85
|
+
* @deprecated Not for public use in future versions.
|
|
86
|
+
*/
|
|
87
|
+
public JSException(String s) {
|
|
88
|
+
super(s);
|
|
89
|
+
filename = "unknown";
|
|
90
|
+
lineno = 0;
|
|
91
|
+
source = "";
|
|
92
|
+
tokenIndex = 0;
|
|
93
|
+
wrappedExceptionType = EXCEPTION_TYPE_EMPTY;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Constructs a JSException with a wrapped JavaScript exception object.
|
|
98
|
+
* This constructor needs to be public so that Java users can throw
|
|
99
|
+
* exceptions to JS cleanly.
|
|
100
|
+
*/
|
|
101
|
+
private JSException(int wrappedExceptionType, Object wrappedException) {
|
|
102
|
+
super();
|
|
103
|
+
this.wrappedExceptionType = wrappedExceptionType;
|
|
104
|
+
this.wrappedException = wrappedException;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Constructs a JSException with a detail message and all the
|
|
109
|
+
* other info that usually comes with a JavaScript error.
|
|
110
|
+
* @param s the detail message
|
|
111
|
+
*
|
|
112
|
+
* @deprecated Not for public use in future versions.
|
|
113
|
+
*/
|
|
114
|
+
public JSException(String s, String filename, int lineno,
|
|
115
|
+
String source, int tokenIndex) {
|
|
116
|
+
super(s);
|
|
117
|
+
this.filename = filename;
|
|
118
|
+
this.lineno = lineno;
|
|
119
|
+
this.source = source;
|
|
120
|
+
this.tokenIndex = tokenIndex;
|
|
121
|
+
wrappedExceptionType = EXCEPTION_TYPE_EMPTY;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Instance method getWrappedExceptionType returns the int mapping of the
|
|
126
|
+
* type of the wrappedException Object.
|
|
127
|
+
*/
|
|
128
|
+
public int getWrappedExceptionType() {
|
|
129
|
+
return wrappedExceptionType;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Instance method getWrappedException.
|
|
134
|
+
*/
|
|
135
|
+
public Object getWrappedException() {
|
|
136
|
+
return wrappedException;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
}
|
|
140
|
+
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
/* -*- Mode: Java; tab-width: 8; c-basic-offset: 4 -*-
|
|
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
|
+
/* more doc todo:
|
|
41
|
+
* threads
|
|
42
|
+
* gc
|
|
43
|
+
*
|
|
44
|
+
*
|
|
45
|
+
*/
|
|
46
|
+
|
|
47
|
+
package netscape.javascript;
|
|
48
|
+
|
|
49
|
+
import java.applet.Applet;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* JSObject allows Java to manipulate objects that are
|
|
53
|
+
* defined in JavaScript.
|
|
54
|
+
* Values passed from Java to JavaScript are converted as
|
|
55
|
+
* follows:<ul>
|
|
56
|
+
* <li>JSObject is converted to the original JavaScript object
|
|
57
|
+
* <li>Any other Java object is converted to a JavaScript wrapper,
|
|
58
|
+
* which can be used to access methods and fields of the java object.
|
|
59
|
+
* Converting this wrapper to a string will call the toString method
|
|
60
|
+
* on the original object, converting to a number will call the
|
|
61
|
+
* doubleValue method if possible and fail otherwise. Converting
|
|
62
|
+
* to a boolean will try to call the booleanValue method in the
|
|
63
|
+
* same way.
|
|
64
|
+
* <li>Java arrays are wrapped with a JavaScript object that understands
|
|
65
|
+
* array.length and array[index]
|
|
66
|
+
* <li>A Java boolean is converted to a JavaScript boolean
|
|
67
|
+
* <li>Java byte, char, short, int, long, float, and double are converted
|
|
68
|
+
* to JavaScript numbers
|
|
69
|
+
* </ul>
|
|
70
|
+
* Values passed from JavaScript to Java are converted as follows:<ul>
|
|
71
|
+
* <li>objects which are wrappers around java objects are unwrapped
|
|
72
|
+
* <li>other objects are wrapped with a JSObject
|
|
73
|
+
* <li>strings, numbers and booleans are converted to String, Double,
|
|
74
|
+
* and Boolean objects respectively
|
|
75
|
+
* </ul>
|
|
76
|
+
* This means that all JavaScript values show up as some kind
|
|
77
|
+
* of java.lang.Object in Java. In order to make much use of them,
|
|
78
|
+
* you will have to cast them to the appropriate subclass of Object,
|
|
79
|
+
* e.g. <code>(String) window.getMember("name");</code> or
|
|
80
|
+
* <code>(JSObject) window.getMember("document");</code>.
|
|
81
|
+
*/
|
|
82
|
+
public final class JSObject {
|
|
83
|
+
/* the internal object data */
|
|
84
|
+
private int internal;
|
|
85
|
+
private long long_internal;
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* initialize
|
|
89
|
+
*/
|
|
90
|
+
private static native void initClass();
|
|
91
|
+
static {
|
|
92
|
+
// On MRJ, this property won't exist, because the library is preloaded.
|
|
93
|
+
String liveConnectLibrary = System.getProperty("netscape.jsj.dll", null);
|
|
94
|
+
if (liveConnectLibrary != null) {
|
|
95
|
+
System.loadLibrary(liveConnectLibrary);
|
|
96
|
+
initClass();
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* it is illegal to construct a JSObject manually
|
|
102
|
+
*/
|
|
103
|
+
private JSObject(int jsobj_addr) {
|
|
104
|
+
internal = jsobj_addr;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
private JSObject(long jsobj_addr) {
|
|
108
|
+
long_internal = jsobj_addr;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Retrieves a named member of a JavaScript object.
|
|
113
|
+
* Equivalent to "this.<i>name</i>" in JavaScript.
|
|
114
|
+
*/
|
|
115
|
+
public native Object getMember(String name);
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Retrieves an indexed member of a JavaScript object.
|
|
119
|
+
* Equivalent to "this[<i>index</i>]" in JavaScript.
|
|
120
|
+
*/
|
|
121
|
+
// public Object getMember(int index) { return getSlot(index); }
|
|
122
|
+
public native Object getSlot(int index);
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Sets a named member of a JavaScript object.
|
|
126
|
+
* Equivalent to "this.<i>name</i> = <i>value</i>" in JavaScript.
|
|
127
|
+
*/
|
|
128
|
+
public native void setMember(String name, Object value);
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Sets an indexed member of a JavaScript object.
|
|
132
|
+
* Equivalent to "this[<i>index</i>] = <i>value</i>" in JavaScript.
|
|
133
|
+
*/
|
|
134
|
+
// public void setMember(int index, Object value) {
|
|
135
|
+
// setSlot(index, value);
|
|
136
|
+
// }
|
|
137
|
+
public native void setSlot(int index, Object value);
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* Removes a named member of a JavaScript object.
|
|
141
|
+
*/
|
|
142
|
+
public native void removeMember(String name);
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Calls a JavaScript method.
|
|
146
|
+
* Equivalent to "this.<i>methodName</i>(<i>args</i>[0], <i>args</i>[1], ...)" in JavaScript.
|
|
147
|
+
*/
|
|
148
|
+
public native Object call(String methodName, Object args[]);
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Evaluates a JavaScript expression. The expression is a string
|
|
152
|
+
* of JavaScript source code which will be evaluated in the context
|
|
153
|
+
* given by "this".
|
|
154
|
+
*/
|
|
155
|
+
public native Object eval(String s);
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Converts a JSObject to a String.
|
|
159
|
+
*/
|
|
160
|
+
public native String toString();
|
|
161
|
+
|
|
162
|
+
// should use some sort of identifier rather than String
|
|
163
|
+
// is "property" the right word?
|
|
164
|
+
// native String[] listProperties();
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* get a JSObject for the window containing the given applet
|
|
169
|
+
*/
|
|
170
|
+
public static native JSObject getWindow(Applet applet);
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Finalization decrements the reference count on the corresponding
|
|
174
|
+
* JavaScript object.
|
|
175
|
+
*/
|
|
176
|
+
protected native void finalize();
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* Override java.lang.Object.equals() because identity is not preserved
|
|
180
|
+
* with instances of JSObject.
|
|
181
|
+
*/
|
|
182
|
+
public native boolean equals(Object obj);
|
|
183
|
+
}
|