johnson 1.2.0 → 2.0.0.pre0
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/CHANGELOG.rdoc +8 -0
- data/Manifest.txt +762 -48
- data/README.rdoc +2 -1
- data/Rakefile +90 -18
- data/ext/spidermonkey/conversions.c +9 -2
- data/ext/spidermonkey/ruby_land_proxy.c +1 -1
- data/ext/spidermonkey/runtime.h +1 -1
- data/ext/tracemonkey/context.cc +125 -0
- data/ext/tracemonkey/context.h +19 -0
- data/ext/tracemonkey/conversions.cc +365 -0
- data/ext/tracemonkey/conversions.h +32 -0
- data/ext/tracemonkey/debugger.cc +234 -0
- data/ext/tracemonkey/debugger.h +10 -0
- data/ext/tracemonkey/extconf.rb +37 -0
- data/ext/tracemonkey/extensions.cc +37 -0
- data/ext/tracemonkey/extensions.h +12 -0
- data/ext/tracemonkey/global.cc +40 -0
- data/ext/tracemonkey/global.h +11 -0
- data/ext/tracemonkey/idhash.cc +16 -0
- data/ext/tracemonkey/idhash.h +8 -0
- data/ext/tracemonkey/immutable_node.cc +1199 -0
- data/ext/tracemonkey/immutable_node.cc.erb +559 -0
- data/ext/tracemonkey/immutable_node.h +22 -0
- data/ext/tracemonkey/jroot.h +215 -0
- data/ext/tracemonkey/js_land_proxy.cc +620 -0
- data/ext/tracemonkey/js_land_proxy.h +20 -0
- data/ext/tracemonkey/ruby_land_proxy.cc +618 -0
- data/ext/tracemonkey/ruby_land_proxy.h +38 -0
- data/ext/tracemonkey/runtime.cc +454 -0
- data/ext/tracemonkey/runtime.h +27 -0
- data/ext/tracemonkey/split_global.cc +392 -0
- data/ext/tracemonkey/split_global.h +11 -0
- data/ext/tracemonkey/tracemonkey.cc +23 -0
- data/ext/tracemonkey/tracemonkey.h +32 -0
- data/lib/johnson.rb +12 -4
- data/lib/johnson/error.rb +5 -0
- data/lib/johnson/js/prelude.js +16 -1
- data/lib/johnson/parser.rb +2 -1
- data/lib/johnson/runtime.rb +87 -26
- data/lib/johnson/spidermonkey/runtime.rb +7 -16
- data/lib/johnson/tracemonkey.rb +13 -0
- data/lib/johnson/tracemonkey/context.rb +10 -0
- data/lib/johnson/tracemonkey/debugger.rb +67 -0
- data/lib/johnson/tracemonkey/immutable_node.rb +282 -0
- data/lib/johnson/tracemonkey/js_land_proxy.rb +64 -0
- data/lib/johnson/tracemonkey/mutable_tree_visitor.rb +242 -0
- data/lib/johnson/tracemonkey/ruby_land_proxy.rb +17 -0
- data/lib/johnson/tracemonkey/runtime.rb +80 -0
- data/test/{johnson_test.rb → generic/johnson_test.rb} +1 -1
- data/test/{parser_test.rb → generic/parser_test.rb} +1 -1
- data/test/helper.rb +23 -4
- data/test/johnson/{browser_test.rb → generic/browser_test.rb} +1 -1
- data/test/johnson/{conversions → generic/conversions}/array_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/boolean_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/callable_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/file_test.rb +1 -1
- data/test/johnson/generic/conversions/helper.rb +1 -0
- data/test/johnson/{conversions → generic/conversions}/nil_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/number_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/regexp_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/string_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/struct_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/symbol_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/thread_test.rb +1 -1
- data/test/johnson/{custom_conversions_test.rb → generic/custom_conversions_test.rb} +1 -1
- data/test/johnson/generic/default_test.rb +12 -0
- data/test/johnson/{error_test.rb → generic/error_test.rb} +1 -1
- data/test/johnson/{extensions_test.rb → generic/extensions_test.rb} +1 -1
- data/test/johnson/generic/helper.rb +1 -0
- data/test/johnson/{nodes → generic/nodes}/array_literal_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/array_node_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/binary_node_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/bracket_access_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/delete_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/do_while_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/dot_accessor_test.rb +1 -1
- data/test/johnson/generic/nodes/export_test.rb +11 -0
- data/test/johnson/{nodes → generic/nodes}/for_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/function_test.rb +1 -1
- data/test/johnson/generic/nodes/helper.rb +1 -0
- data/test/johnson/{nodes → generic/nodes}/if_test.rb +16 -6
- data/test/johnson/generic/nodes/import_test.rb +15 -0
- data/test/johnson/{nodes → generic/nodes}/label_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/let_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/object_literal_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/return_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/semi_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/switch_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/ternary_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/throw_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/try_node_test.rb +36 -6
- data/test/johnson/{nodes → generic/nodes}/typeof_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/unary_node_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/void_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/while_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/with_test.rb +1 -1
- data/test/johnson/{prelude_test.rb → generic/prelude_test.rb} +1 -1
- data/test/johnson/{runtime_test.rb → generic/runtime_test.rb} +3 -6
- data/test/johnson/generic/version_test.rb +13 -0
- data/test/johnson/{visitors → generic/visitors}/dot_visitor_test.rb +1 -1
- data/test/johnson/{visitors → generic/visitors}/enumerating_visitor_test.rb +1 -1
- data/test/johnson/generic/visitors/helper.rb +1 -0
- data/test/johnson/spidermonkey/js_land_proxy_test.rb +1 -5
- data/test/johnson/spidermonkey/ruby_land_proxy_test.rb +11 -7
- data/test/johnson/tracemonkey/context_test.rb +21 -0
- data/test/johnson/tracemonkey/immutable_node_test.rb +34 -0
- data/test/johnson/tracemonkey/js_land_proxy_test.rb +273 -0
- data/test/johnson/tracemonkey/ruby_land_proxy_test.rb +274 -0
- data/test/johnson/tracemonkey/runtime_test.rb +41 -0
- data/test/johnson/tracemonkey/split_global_test.rb +32 -0
- data/vendor/spidermonkey/js.pkg +2 -0
- data/vendor/tracemonkey/Makefile.in +668 -0
- data/vendor/tracemonkey/Makefile.ref +483 -0
- data/vendor/tracemonkey/README.html +54 -0
- data/vendor/tracemonkey/SpiderMonkey.rsp +11 -0
- data/vendor/tracemonkey/Y.js +19 -0
- data/vendor/tracemonkey/aclocal.m4 +9 -0
- data/vendor/tracemonkey/bench.sh +5 -0
- data/vendor/tracemonkey/build/autoconf/acoutput-fast.pl +202 -0
- data/vendor/tracemonkey/build/autoconf/altoptions.m4 +154 -0
- data/vendor/tracemonkey/build/autoconf/config.guess +1537 -0
- data/vendor/tracemonkey/build/autoconf/config.sub +1595 -0
- data/vendor/tracemonkey/build/autoconf/install-sh +119 -0
- data/vendor/tracemonkey/build/autoconf/make-makefile +315 -0
- data/vendor/tracemonkey/build/autoconf/match-dir.sh +101 -0
- data/vendor/tracemonkey/build/autoconf/moznbytetype.m4 +136 -0
- data/vendor/tracemonkey/build/autoconf/nspr.m4 +82 -0
- data/vendor/tracemonkey/build/autoconf/pkg.m4 +59 -0
- data/vendor/tracemonkey/build/autoconf/update-makefile.sh +118 -0
- data/vendor/tracemonkey/build/cygwin-wrapper +75 -0
- data/vendor/tracemonkey/build/hcc +111 -0
- data/vendor/tracemonkey/build/hcpp +155 -0
- data/vendor/tracemonkey/build/unix/mddepend.pl +165 -0
- data/vendor/tracemonkey/build/unix/uniq.pl +63 -0
- data/vendor/tracemonkey/build/win32/pgomerge.py +40 -0
- data/vendor/tracemonkey/builtins.tbl +91 -0
- data/vendor/tracemonkey/call.js +13 -0
- data/vendor/tracemonkey/config.mk +206 -0
- data/vendor/tracemonkey/config/Makefile.in +106 -0
- data/vendor/tracemonkey/config/Moz/Milestone.pm +232 -0
- data/vendor/tracemonkey/config/autoconf.mk.in +362 -0
- data/vendor/tracemonkey/config/check-sync-dirs.py +103 -0
- data/vendor/tracemonkey/config/check-sync-exceptions +7 -0
- data/vendor/tracemonkey/config/config.mk +881 -0
- data/vendor/tracemonkey/config/fastcwd.pl +66 -0
- data/vendor/tracemonkey/config/gcc_hidden.h +2 -0
- data/vendor/tracemonkey/config/insure.mk +53 -0
- data/vendor/tracemonkey/config/make-system-wrappers.pl +59 -0
- data/vendor/tracemonkey/config/milestone.pl +112 -0
- data/vendor/tracemonkey/config/milestone.txt +13 -0
- data/vendor/tracemonkey/config/mkdepend/Makefile.in +84 -0
- data/vendor/tracemonkey/config/mkdepend/cppsetup.c +233 -0
- data/vendor/tracemonkey/config/mkdepend/def.h +184 -0
- data/vendor/tracemonkey/config/mkdepend/ifparser.c +551 -0
- data/vendor/tracemonkey/config/mkdepend/ifparser.h +83 -0
- data/vendor/tracemonkey/config/mkdepend/imakemdep.h +733 -0
- data/vendor/tracemonkey/config/mkdepend/include.c +337 -0
- data/vendor/tracemonkey/config/mkdepend/main.c +860 -0
- data/vendor/tracemonkey/config/mkdepend/mkdepend.man +382 -0
- data/vendor/tracemonkey/config/mkdepend/parse.c +686 -0
- data/vendor/tracemonkey/config/mkdepend/pr.c +124 -0
- data/vendor/tracemonkey/config/nfspwd.pl +50 -0
- data/vendor/tracemonkey/config/nsinstall.c +481 -0
- data/vendor/tracemonkey/config/nsinstall.py +155 -0
- data/vendor/tracemonkey/config/pathsub.c +247 -0
- data/vendor/tracemonkey/config/pathsub.h +74 -0
- data/vendor/tracemonkey/config/preprocessor.pl +671 -0
- data/vendor/tracemonkey/config/revdepth-nt.pl +48 -0
- data/vendor/tracemonkey/config/revdepth.pl +51 -0
- data/vendor/tracemonkey/config/rules.mk +2310 -0
- data/vendor/tracemonkey/config/static-checking-config.mk +21 -0
- data/vendor/tracemonkey/config/static-checking.js +92 -0
- data/vendor/tracemonkey/config/string-format.js +61 -0
- data/vendor/tracemonkey/config/system-headers +1035 -0
- data/vendor/tracemonkey/config/version.mk +85 -0
- data/vendor/tracemonkey/config/version_win.pl +442 -0
- data/vendor/tracemonkey/configure +14183 -0
- data/vendor/tracemonkey/configure.in +5363 -0
- data/vendor/tracemonkey/correct.sh +23 -0
- data/vendor/tracemonkey/correct/check-3d-morph.js +55 -0
- data/vendor/tracemonkey/correct/check-3d-raytrace.js +445 -0
- data/vendor/tracemonkey/correct/check-access-binary-trees.js +52 -0
- data/vendor/tracemonkey/correct/check-access-fannkuch.js +66 -0
- data/vendor/tracemonkey/correct/check-access-nbody.js +171 -0
- data/vendor/tracemonkey/correct/check-access-nsieve.js +40 -0
- data/vendor/tracemonkey/correct/check-bitops-3bit-bits-in-byte.js +35 -0
- data/vendor/tracemonkey/correct/check-bitops-bits-in-byte.js +24 -0
- data/vendor/tracemonkey/correct/check-bitops-bitwise-and.js +29 -0
- data/vendor/tracemonkey/correct/check-bitops-nsieve-bits.js +40 -0
- data/vendor/tracemonkey/correct/check-controlflow-recursive.js +27 -0
- data/vendor/tracemonkey/correct/check-date-format-tofte.js +302 -0
- data/vendor/tracemonkey/correct/check-date-format-xparb.js +421 -0
- data/vendor/tracemonkey/correct/check-mont.js +119 -0
- data/vendor/tracemonkey/dtoa.c +3335 -0
- data/vendor/tracemonkey/editline/Makefile.in +55 -0
- data/vendor/tracemonkey/editline/Makefile.ref +143 -0
- data/vendor/tracemonkey/editline/README +83 -0
- data/vendor/tracemonkey/editline/editline.3 +175 -0
- data/vendor/tracemonkey/editline/editline.c +1371 -0
- data/vendor/tracemonkey/editline/editline.h +135 -0
- data/vendor/tracemonkey/editline/sysunix.c +182 -0
- data/vendor/tracemonkey/editline/unix.h +82 -0
- data/vendor/tracemonkey/if.js +13 -0
- data/vendor/tracemonkey/imacro_asm.js.in +396 -0
- data/vendor/tracemonkey/imacros.c.out +1034 -0
- data/vendor/tracemonkey/imacros.jsasm +770 -0
- data/vendor/tracemonkey/javascript-trace.d +73 -0
- data/vendor/tracemonkey/jitstats.tbl +55 -0
- data/vendor/tracemonkey/js-config.h.in +82 -0
- data/vendor/tracemonkey/js-config.in +111 -0
- data/vendor/tracemonkey/js.mdp +0 -0
- data/vendor/tracemonkey/js.msg +312 -0
- data/vendor/tracemonkey/js3240.rc +79 -0
- data/vendor/tracemonkey/jsOS240.def +654 -0
- data/vendor/tracemonkey/jsapi.cpp +6005 -0
- data/vendor/tracemonkey/jsapi.h +2727 -0
- data/vendor/tracemonkey/jsarena.cpp +450 -0
- data/vendor/tracemonkey/jsarena.h +318 -0
- data/vendor/tracemonkey/jsarray.cpp +3664 -0
- data/vendor/tracemonkey/jsarray.h +238 -0
- data/vendor/tracemonkey/jsatom.cpp +1244 -0
- data/vendor/tracemonkey/jsatom.h +493 -0
- data/vendor/tracemonkey/jsbit.h +249 -0
- data/vendor/tracemonkey/jsbool.cpp +184 -0
- data/vendor/tracemonkey/jsbool.h +88 -0
- data/vendor/tracemonkey/jsbuiltins.cpp +415 -0
- data/vendor/tracemonkey/jsbuiltins.h +456 -0
- data/vendor/tracemonkey/jsclist.h +139 -0
- data/vendor/tracemonkey/jscntxt.cpp +1816 -0
- data/vendor/tracemonkey/jscntxt.h +1541 -0
- data/vendor/tracemonkey/jscompat.h +57 -0
- data/vendor/tracemonkey/jsconfig.mk +181 -0
- data/vendor/tracemonkey/jscpucfg.cpp +194 -0
- data/vendor/tracemonkey/jscpucfg.h +91 -0
- data/vendor/tracemonkey/jsdate.cpp +2465 -0
- data/vendor/tracemonkey/jsdate.h +129 -0
- data/vendor/tracemonkey/jsdbgapi.cpp +2017 -0
- data/vendor/tracemonkey/jsdbgapi.h +500 -0
- data/vendor/tracemonkey/jsdhash.cpp +876 -0
- data/vendor/tracemonkey/jsdhash.h +588 -0
- data/vendor/tracemonkey/jsdtoa.cpp +572 -0
- data/vendor/tracemonkey/jsdtoa.h +131 -0
- data/vendor/tracemonkey/jsdtracef.c +318 -0
- data/vendor/tracemonkey/jsdtracef.h +81 -0
- data/vendor/tracemonkey/jsemit.cpp +7292 -0
- data/vendor/tracemonkey/jsemit.h +802 -0
- data/vendor/tracemonkey/jsexn.cpp +1337 -0
- data/vendor/tracemonkey/jsexn.h +96 -0
- data/vendor/tracemonkey/jsfile.cpp +2747 -0
- data/vendor/tracemonkey/jsfile.h +56 -0
- data/vendor/tracemonkey/jsfile.msg +90 -0
- data/vendor/tracemonkey/jsfun.cpp +3089 -0
- data/vendor/tracemonkey/jsfun.h +366 -0
- data/vendor/tracemonkey/jsgc.cpp +3816 -0
- data/vendor/tracemonkey/jsgc.h +429 -0
- data/vendor/tracemonkey/jshash.cpp +477 -0
- data/vendor/tracemonkey/jshash.h +151 -0
- data/vendor/tracemonkey/jsify.pl +483 -0
- data/vendor/tracemonkey/jsinterp.cpp +7441 -0
- data/vendor/tracemonkey/jsinterp.h +666 -0
- data/vendor/tracemonkey/jsinvoke.cpp +42 -0
- data/vendor/tracemonkey/jsiter.cpp +1040 -0
- data/vendor/tracemonkey/jsiter.h +140 -0
- data/vendor/tracemonkey/jskeyword.tbl +124 -0
- data/vendor/tracemonkey/jskwgen.cpp +460 -0
- data/vendor/tracemonkey/jslibmath.h +69 -0
- data/vendor/tracemonkey/jslock.cpp +1512 -0
- data/vendor/tracemonkey/jslock.h +325 -0
- data/vendor/tracemonkey/jslocko.asm +60 -0
- data/vendor/tracemonkey/jslog2.cpp +111 -0
- data/vendor/tracemonkey/jslong.h +167 -0
- data/vendor/tracemonkey/jsmath.cpp +806 -0
- data/vendor/tracemonkey/jsmath.h +63 -0
- data/vendor/tracemonkey/jsnum.cpp +1374 -0
- data/vendor/tracemonkey/jsnum.h +280 -0
- data/vendor/tracemonkey/jsobj.cpp +6165 -0
- data/vendor/tracemonkey/jsobj.h +870 -0
- data/vendor/tracemonkey/json.cpp +1338 -0
- data/vendor/tracemonkey/json.h +108 -0
- data/vendor/tracemonkey/jsopcode.cpp +5484 -0
- data/vendor/tracemonkey/jsopcode.h +434 -0
- data/vendor/tracemonkey/jsopcode.tbl +591 -0
- data/vendor/tracemonkey/jsoplengen.cpp +121 -0
- data/vendor/tracemonkey/jsotypes.h +202 -0
- data/vendor/tracemonkey/jsparse.cpp +9257 -0
- data/vendor/tracemonkey/jsparse.h +900 -0
- data/vendor/tracemonkey/jsprf.cpp +1262 -0
- data/vendor/tracemonkey/jsprf.h +150 -0
- data/vendor/tracemonkey/jsproto.tbl +117 -0
- data/vendor/tracemonkey/jsprvtd.h +366 -0
- data/vendor/tracemonkey/jspubtd.h +585 -0
- data/vendor/tracemonkey/jsregexp.cpp +5051 -0
- data/vendor/tracemonkey/jsregexp.h +199 -0
- data/vendor/tracemonkey/jsreops.tbl +145 -0
- data/vendor/tracemonkey/jsscan.cpp +2040 -0
- data/vendor/tracemonkey/jsscan.h +467 -0
- data/vendor/tracemonkey/jsscope.cpp +1966 -0
- data/vendor/tracemonkey/jsscope.h +487 -0
- data/vendor/tracemonkey/jsscript.cpp +1932 -0
- data/vendor/tracemonkey/jsscript.h +345 -0
- data/vendor/tracemonkey/jsshell.msg +54 -0
- data/vendor/tracemonkey/jsstack.js +167 -0
- data/vendor/tracemonkey/jsstaticcheck.h +69 -0
- data/vendor/tracemonkey/jsstddef.h +87 -0
- data/vendor/tracemonkey/jsstdint.h +96 -0
- data/vendor/tracemonkey/jsstr.cpp +5277 -0
- data/vendor/tracemonkey/jsstr.h +702 -0
- data/vendor/tracemonkey/jstracer.cpp +10991 -0
- data/vendor/tracemonkey/jstracer.h +794 -0
- data/vendor/tracemonkey/jstypes.h +481 -0
- data/vendor/tracemonkey/jsutil.cpp +361 -0
- data/vendor/tracemonkey/jsutil.h +178 -0
- data/vendor/tracemonkey/jsversion.h +243 -0
- data/vendor/tracemonkey/jswince.asm +44 -0
- data/vendor/tracemonkey/jsxdrapi.cpp +800 -0
- data/vendor/tracemonkey/jsxdrapi.h +220 -0
- data/vendor/tracemonkey/jsxml.cpp +8327 -0
- data/vendor/tracemonkey/jsxml.h +305 -0
- data/vendor/tracemonkey/liveconnect/LiveConnect.dsp +157 -0
- data/vendor/tracemonkey/liveconnect/LiveConnectShell.dsp +120 -0
- data/vendor/tracemonkey/liveconnect/LiveConnectShell.dsw +44 -0
- data/vendor/tracemonkey/liveconnect/Makefile.in +105 -0
- data/vendor/tracemonkey/liveconnect/Makefile.ref +169 -0
- data/vendor/tracemonkey/liveconnect/README.html +712 -0
- data/vendor/tracemonkey/liveconnect/_jni/netscape_javascript_JSException.h +14 -0
- data/vendor/tracemonkey/liveconnect/_jni/netscape_javascript_JSObject.h +155 -0
- data/vendor/tracemonkey/liveconnect/classes/Makefile.in +89 -0
- data/vendor/tracemonkey/liveconnect/classes/Makefile.ref +57 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/Makefile.ref +47 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSException.java +140 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSObject.java +183 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSProxy.java +58 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSRunnable.java +70 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSUtil.java +59 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/Makefile.ref +53 -0
- data/vendor/tracemonkey/liveconnect/config/AIX4.1.mk +45 -0
- data/vendor/tracemonkey/liveconnect/config/AIX4.2.mk +45 -0
- data/vendor/tracemonkey/liveconnect/config/AIX4.3.mk +50 -0
- data/vendor/tracemonkey/liveconnect/config/HP-UXB.10.10.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/HP-UXB.10.20.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/HP-UXB.11.00.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/IRIX6.2.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/IRIX6.3.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/IRIX6.5.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/Linux_All.mk +73 -0
- data/vendor/tracemonkey/liveconnect/config/OSF1V4.0.mk +65 -0
- data/vendor/tracemonkey/liveconnect/config/OSF1V5.0.mk +62 -0
- data/vendor/tracemonkey/liveconnect/config/SunOS5.5.1.mk +55 -0
- data/vendor/tracemonkey/liveconnect/config/SunOS5.6.mk +39 -0
- data/vendor/tracemonkey/liveconnect/config/SunOS5.7.mk +39 -0
- data/vendor/tracemonkey/liveconnect/config/SunOS5.8.mk +39 -0
- data/vendor/tracemonkey/liveconnect/config/WINNT4.0.mk +53 -0
- data/vendor/tracemonkey/liveconnect/jsj.c +886 -0
- data/vendor/tracemonkey/liveconnect/jsj.msg +98 -0
- data/vendor/tracemonkey/liveconnect/jsj_JSObject.c +1377 -0
- data/vendor/tracemonkey/liveconnect/jsj_JavaArray.c +474 -0
- data/vendor/tracemonkey/liveconnect/jsj_JavaClass.c +737 -0
- data/vendor/tracemonkey/liveconnect/jsj_JavaMember.c +191 -0
- data/vendor/tracemonkey/liveconnect/jsj_JavaObject.c +1079 -0
- data/vendor/tracemonkey/liveconnect/jsj_JavaPackage.c +569 -0
- data/vendor/tracemonkey/liveconnect/jsj_array.c +207 -0
- data/vendor/tracemonkey/liveconnect/jsj_class.c +770 -0
- data/vendor/tracemonkey/liveconnect/jsj_convert.c +902 -0
- data/vendor/tracemonkey/liveconnect/jsj_field.c +421 -0
- data/vendor/tracemonkey/liveconnect/jsj_hash.c +488 -0
- data/vendor/tracemonkey/liveconnect/jsj_hash.h +161 -0
- data/vendor/tracemonkey/liveconnect/jsj_method.c +1825 -0
- data/vendor/tracemonkey/liveconnect/jsj_nodl.c +1 -0
- data/vendor/tracemonkey/liveconnect/jsj_private.h +677 -0
- data/vendor/tracemonkey/liveconnect/jsj_simpleapi.c +219 -0
- data/vendor/tracemonkey/liveconnect/jsj_utils.c +513 -0
- data/vendor/tracemonkey/liveconnect/jsjava.h +316 -0
- data/vendor/tracemonkey/liveconnect/netscape_javascript_JSObject.h +155 -0
- data/vendor/tracemonkey/liveconnect/nsCLiveconnect.cpp +785 -0
- data/vendor/tracemonkey/liveconnect/nsCLiveconnect.h +197 -0
- data/vendor/tracemonkey/liveconnect/nsCLiveconnectFactory.cpp +118 -0
- data/vendor/tracemonkey/liveconnect/nsCLiveconnectFactory.h +76 -0
- data/vendor/tracemonkey/liveconnect/nsILiveconnect.h +197 -0
- data/vendor/tracemonkey/liveconnect/nsISecureLiveconnect.h +94 -0
- data/vendor/tracemonkey/liveconnect/nsISecurityContext.h +136 -0
- data/vendor/tracemonkey/lock_SunOS.s +119 -0
- data/vendor/tracemonkey/mandelbrot-results.js +3 -0
- data/vendor/tracemonkey/math-partial-sums.js +32 -0
- data/vendor/tracemonkey/math-trace-tests.js +507 -0
- data/vendor/tracemonkey/md5.js +289 -0
- data/vendor/tracemonkey/nanojit/Assembler.cpp +1984 -0
- data/vendor/tracemonkey/nanojit/Assembler.h +375 -0
- data/vendor/tracemonkey/nanojit/Fragmento.cpp +651 -0
- data/vendor/tracemonkey/nanojit/Fragmento.h +237 -0
- data/vendor/tracemonkey/nanojit/LIR.cpp +2314 -0
- data/vendor/tracemonkey/nanojit/LIR.h +879 -0
- data/vendor/tracemonkey/nanojit/LIRopcode.tbl +252 -0
- data/vendor/tracemonkey/nanojit/Native.h +127 -0
- data/vendor/tracemonkey/nanojit/NativeARM.cpp +1742 -0
- data/vendor/tracemonkey/nanojit/NativeARM.h +844 -0
- data/vendor/tracemonkey/nanojit/NativeSparc.cpp +1130 -0
- data/vendor/tracemonkey/nanojit/NativeSparc.h +948 -0
- data/vendor/tracemonkey/nanojit/NativeThumb.cpp +1322 -0
- data/vendor/tracemonkey/nanojit/NativeThumb.h +525 -0
- data/vendor/tracemonkey/nanojit/Nativei386.cpp +1748 -0
- data/vendor/tracemonkey/nanojit/Nativei386.h +857 -0
- data/vendor/tracemonkey/nanojit/RegAlloc.cpp +183 -0
- data/vendor/tracemonkey/nanojit/RegAlloc.h +95 -0
- data/vendor/tracemonkey/nanojit/TraceTreeDrawer.cpp +306 -0
- data/vendor/tracemonkey/nanojit/TraceTreeDrawer.h +88 -0
- data/vendor/tracemonkey/nanojit/avmplus.cpp +56 -0
- data/vendor/tracemonkey/nanojit/avmplus.h +1016 -0
- data/vendor/tracemonkey/nanojit/nanojit.h +253 -0
- data/vendor/tracemonkey/perfect.js +39 -0
- data/vendor/tracemonkey/plify_jsdhash.sed +35 -0
- data/vendor/tracemonkey/prmjtime.cpp +869 -0
- data/vendor/tracemonkey/prmjtime.h +103 -0
- data/vendor/tracemonkey/ref-config/AIX4.1.mk +65 -0
- data/vendor/tracemonkey/ref-config/AIX4.2.mk +64 -0
- data/vendor/tracemonkey/ref-config/AIX4.3.mk +65 -0
- data/vendor/tracemonkey/ref-config/Darwin.mk +85 -0
- data/vendor/tracemonkey/ref-config/Darwin1.3.mk +81 -0
- data/vendor/tracemonkey/ref-config/Darwin1.4.mk +41 -0
- data/vendor/tracemonkey/ref-config/Darwin5.2.mk +81 -0
- data/vendor/tracemonkey/ref-config/Darwin5.3.mk +81 -0
- data/vendor/tracemonkey/ref-config/Darwin64.mk +72 -0
- data/vendor/tracemonkey/ref-config/HP-UXB.10.10.mk +77 -0
- data/vendor/tracemonkey/ref-config/HP-UXB.10.20.mk +77 -0
- data/vendor/tracemonkey/ref-config/HP-UXB.11.00.mk +80 -0
- data/vendor/tracemonkey/ref-config/IRIX.mk +87 -0
- data/vendor/tracemonkey/ref-config/IRIX5.3.mk +44 -0
- data/vendor/tracemonkey/ref-config/IRIX6.1.mk +44 -0
- data/vendor/tracemonkey/ref-config/IRIX6.2.mk +44 -0
- data/vendor/tracemonkey/ref-config/IRIX6.3.mk +44 -0
- data/vendor/tracemonkey/ref-config/IRIX6.5.mk +44 -0
- data/vendor/tracemonkey/ref-config/Linux_All.mk +105 -0
- data/vendor/tracemonkey/ref-config/Mac_OS10.0.mk +82 -0
- data/vendor/tracemonkey/ref-config/OSF1V4.0.mk +72 -0
- data/vendor/tracemonkey/ref-config/OSF1V5.0.mk +69 -0
- data/vendor/tracemonkey/ref-config/SunOS4.1.4.mk +101 -0
- data/vendor/tracemonkey/ref-config/SunOS5.10.mk +50 -0
- data/vendor/tracemonkey/ref-config/SunOS5.3.mk +91 -0
- data/vendor/tracemonkey/ref-config/SunOS5.4.mk +92 -0
- data/vendor/tracemonkey/ref-config/SunOS5.5.1.mk +44 -0
- data/vendor/tracemonkey/ref-config/SunOS5.5.mk +87 -0
- data/vendor/tracemonkey/ref-config/SunOS5.6.mk +89 -0
- data/vendor/tracemonkey/ref-config/SunOS5.7.mk +44 -0
- data/vendor/tracemonkey/ref-config/SunOS5.8.mk +44 -0
- data/vendor/tracemonkey/ref-config/SunOS5.9.mk +44 -0
- data/vendor/tracemonkey/ref-config/WINNT4.0.mk +118 -0
- data/vendor/tracemonkey/ref-config/WINNT5.0.mk +118 -0
- data/vendor/tracemonkey/ref-config/WINNT5.1.mk +118 -0
- data/vendor/tracemonkey/ref-config/WINNT5.2.mk +118 -0
- data/vendor/tracemonkey/ref-config/WINNT6.0.mk +118 -0
- data/vendor/tracemonkey/ref-config/dgux.mk +64 -0
- data/vendor/tracemonkey/resource.h +15 -0
- data/vendor/tracemonkey/rules.mk +206 -0
- data/vendor/tracemonkey/shell/Makefile.in +72 -0
- data/vendor/tracemonkey/shell/js.cpp +4719 -0
- data/vendor/tracemonkey/t/3d-cube.js +337 -0
- data/vendor/tracemonkey/t/3d-morph.js +54 -0
- data/vendor/tracemonkey/t/3d-raytrace.js +441 -0
- data/vendor/tracemonkey/t/access-binary-trees.js +50 -0
- data/vendor/tracemonkey/t/access-fannkuch.js +66 -0
- data/vendor/tracemonkey/t/access-nbody.js +169 -0
- data/vendor/tracemonkey/t/access-nsieve.js +38 -0
- data/vendor/tracemonkey/t/bitops-3bit-bits-in-byte.js +32 -0
- data/vendor/tracemonkey/t/bitops-bits-in-byte.js +21 -0
- data/vendor/tracemonkey/t/bitops-bitwise-and.js +28 -0
- data/vendor/tracemonkey/t/bitops-nsieve-bits.js +32 -0
- data/vendor/tracemonkey/t/controlflow-recursive.js +25 -0
- data/vendor/tracemonkey/t/crypto-aes.js +422 -0
- data/vendor/tracemonkey/t/crypto-md5.js +286 -0
- data/vendor/tracemonkey/t/crypto-sha1.js +224 -0
- data/vendor/tracemonkey/t/date-format-tofte.js +299 -0
- data/vendor/tracemonkey/t/date-format-xparb.js +417 -0
- data/vendor/tracemonkey/t/math-cordic.js +95 -0
- data/vendor/tracemonkey/t/math-partial-sums.js +33 -0
- data/vendor/tracemonkey/t/math-spectral-norm.js +51 -0
- data/vendor/tracemonkey/t/regexp-dna.js +1712 -0
- data/vendor/tracemonkey/t/string-base64.js +135 -0
- data/vendor/tracemonkey/t/string-fasta.js +85 -0
- data/vendor/tracemonkey/t/string-tagcloud.js +265 -0
- data/vendor/tracemonkey/t/string-unpack-code.js +68 -0
- data/vendor/tracemonkey/t/string-validate-input.js +89 -0
- data/vendor/tracemonkey/time.sh +13 -0
- data/vendor/tracemonkey/trace-test.js +5564 -0
- data/vendor/tracemonkey/v8/base.js +187 -0
- data/vendor/tracemonkey/v8/crypto.js +1689 -0
- data/vendor/tracemonkey/v8/deltablue.js +880 -0
- data/vendor/tracemonkey/v8/earley-boyer.js +4682 -0
- data/vendor/tracemonkey/v8/raytrace.js +3418 -0
- data/vendor/tracemonkey/v8/richards.js +539 -0
- data/vendor/tracemonkey/v8/run-crypto.js +44 -0
- data/vendor/tracemonkey/v8/run-deltablue.js +44 -0
- data/vendor/tracemonkey/v8/run-earley-boyer.js +44 -0
- data/vendor/tracemonkey/v8/run-raytrace.js +44 -0
- data/vendor/tracemonkey/v8/run-richards.js +44 -0
- data/vendor/tracemonkey/v8/run.js +49 -0
- data/vendor/tracemonkey/vprof/readme.txt +93 -0
- data/vendor/tracemonkey/vprof/vprof.cpp +360 -0
- data/vendor/tracemonkey/vprof/vprof.h +245 -0
- data/vendor/tracemonkey/xpconnect/Makefile.in +67 -0
- data/vendor/tracemonkey/xpconnect/crashtests/117307-1.html +20 -0
- data/vendor/tracemonkey/xpconnect/crashtests/193710.html +11 -0
- data/vendor/tracemonkey/xpconnect/crashtests/290162-1.html +5 -0
- data/vendor/tracemonkey/xpconnect/crashtests/326615-1.html +16 -0
- data/vendor/tracemonkey/xpconnect/crashtests/328553-1.html +13 -0
- data/vendor/tracemonkey/xpconnect/crashtests/346258-1.html +12 -0
- data/vendor/tracemonkey/xpconnect/crashtests/346512-1-frame1.xhtml +16 -0
- data/vendor/tracemonkey/xpconnect/crashtests/346512-1-frame2.xhtml +15 -0
- data/vendor/tracemonkey/xpconnect/crashtests/346512-1.xhtml +30 -0
- data/vendor/tracemonkey/xpconnect/crashtests/382133-1.html +3 -0
- data/vendor/tracemonkey/xpconnect/crashtests/386680-1.html +22 -0
- data/vendor/tracemonkey/xpconnect/crashtests/394810-1.html +4 -0
- data/vendor/tracemonkey/xpconnect/crashtests/400349-1.html +20 -0
- data/vendor/tracemonkey/xpconnect/crashtests/403356-1.html +13 -0
- data/vendor/tracemonkey/xpconnect/crashtests/418139-1.svg +22 -0
- data/vendor/tracemonkey/xpconnect/crashtests/420513-1.html +11 -0
- data/vendor/tracemonkey/xpconnect/crashtests/453935-1.html +37 -0
- data/vendor/tracemonkey/xpconnect/crashtests/462926.html +12 -0
- data/vendor/tracemonkey/xpconnect/crashtests/468552-1.html +18 -0
- data/vendor/tracemonkey/xpconnect/crashtests/471366-1.html +12 -0
- data/vendor/tracemonkey/xpconnect/crashtests/475185-1.html +13 -0
- data/vendor/tracemonkey/xpconnect/crashtests/475291-1.html +14 -0
- data/vendor/tracemonkey/xpconnect/crashtests/503286-1.html +23 -0
- data/vendor/tracemonkey/xpconnect/crashtests/crashtests.list +21 -0
- data/vendor/tracemonkey/xpconnect/idl/Makefile.in +78 -0
- data/vendor/tracemonkey/xpconnect/idl/XPCIDispatch.idl +51 -0
- data/vendor/tracemonkey/xpconnect/idl/mozIJSSubScriptLoader.idl +64 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIActiveXSecurityPolicy.idl +67 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIDispatchSupport.idl +119 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIJSContextStack.idl +85 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIJSRuntimeService.idl +51 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIScriptError.idl +102 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIScriptableInterfaces.idl +67 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIXPCScriptNotify.idl +66 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIXPCScriptable.idl +183 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIXPCSecurityManager.idl +114 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIXPConnect.idl +819 -0
- data/vendor/tracemonkey/xpconnect/idl/xpcIJSModuleLoader.idl +95 -0
- data/vendor/tracemonkey/xpconnect/idl/xpcIJSWeakReference.idl +49 -0
- data/vendor/tracemonkey/xpconnect/idl/xpccomponents.idl +254 -0
- data/vendor/tracemonkey/xpconnect/idl/xpcexception.idl +66 -0
- data/vendor/tracemonkey/xpconnect/idl/xpcjsid.idl +83 -0
- data/vendor/tracemonkey/xpconnect/loader/ISO8601DateUtils.jsm +176 -0
- data/vendor/tracemonkey/xpconnect/loader/Makefile.in +63 -0
- data/vendor/tracemonkey/xpconnect/loader/XPCOMUtils.jsm +267 -0
- data/vendor/tracemonkey/xpconnect/loader/mozJSComponentLoader.cpp +1717 -0
- data/vendor/tracemonkey/xpconnect/loader/mozJSComponentLoader.h +172 -0
- data/vendor/tracemonkey/xpconnect/loader/mozJSLoaderConstructors.h +101 -0
- data/vendor/tracemonkey/xpconnect/loader/mozJSSubScriptLoader.cpp +360 -0
- data/vendor/tracemonkey/xpconnect/loader/mozJSSubScriptLoader.h +66 -0
- data/vendor/tracemonkey/xpconnect/public/Makefile.in +54 -0
- data/vendor/tracemonkey/xpconnect/public/nsAXPCNativeCallContext.h +89 -0
- data/vendor/tracemonkey/xpconnect/public/nsAutoJSValHolder.h +168 -0
- data/vendor/tracemonkey/xpconnect/public/xpc_map_end.h +327 -0
- data/vendor/tracemonkey/xpconnect/sample/Makefile.in +71 -0
- data/vendor/tracemonkey/xpconnect/sample/README +39 -0
- data/vendor/tracemonkey/xpconnect/sample/xpcsample1.cpp +337 -0
- data/vendor/tracemonkey/xpconnect/sample/xpcsample1.idl +82 -0
- data/vendor/tracemonkey/xpconnect/sample/xpcsample1.js +21 -0
- data/vendor/tracemonkey/xpconnect/shell/Makefile.in +106 -0
- data/vendor/tracemonkey/xpconnect/shell/jsshell.msg +50 -0
- data/vendor/tracemonkey/xpconnect/shell/xpcshell.cpp +1817 -0
- data/vendor/tracemonkey/xpconnect/shell/xpcshellMacUtils.h +43 -0
- data/vendor/tracemonkey/xpconnect/shell/xpcshellMacUtils.mm +54 -0
- data/vendor/tracemonkey/xpconnect/src/Makefile.in +228 -0
- data/vendor/tracemonkey/xpconnect/src/README +3 -0
- data/vendor/tracemonkey/xpconnect/src/XPCCrossOriginWrapper.cpp +1186 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispConvert.cpp +593 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispInlines.h +667 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispInterface.cpp +383 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispObject.cpp +516 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispParamPropJSClass.cpp +223 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispParams.cpp +103 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispPrivate.h +1401 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispTearOff.cpp +547 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispTypeInfo.cpp +471 -0
- data/vendor/tracemonkey/xpconnect/src/XPCIDispatchClassInfo.cpp +139 -0
- data/vendor/tracemonkey/xpconnect/src/XPCIDispatchExtension.cpp +362 -0
- data/vendor/tracemonkey/xpconnect/src/XPCNativeWrapper.cpp +1350 -0
- data/vendor/tracemonkey/xpconnect/src/XPCNativeWrapper.h +88 -0
- data/vendor/tracemonkey/xpconnect/src/XPCSafeJSObjectWrapper.cpp +1148 -0
- data/vendor/tracemonkey/xpconnect/src/XPCSystemOnlyWrapper.cpp +718 -0
- data/vendor/tracemonkey/xpconnect/src/XPCWrapper.cpp +850 -0
- data/vendor/tracemonkey/xpconnect/src/XPCWrapper.h +394 -0
- data/vendor/tracemonkey/xpconnect/src/dom_quickstubs.qsconf +568 -0
- data/vendor/tracemonkey/xpconnect/src/nsDispatchSupport.cpp +348 -0
- data/vendor/tracemonkey/xpconnect/src/nsScriptError.cpp +201 -0
- data/vendor/tracemonkey/xpconnect/src/nsXPConnect.cpp +2609 -0
- data/vendor/tracemonkey/xpconnect/src/qsgen.py +1487 -0
- data/vendor/tracemonkey/xpconnect/src/xpc.msg +217 -0
- data/vendor/tracemonkey/xpconnect/src/xpcJSWeakReference.cpp +148 -0
- data/vendor/tracemonkey/xpconnect/src/xpcJSWeakReference.h +56 -0
- data/vendor/tracemonkey/xpconnect/src/xpccallcontext.cpp +579 -0
- data/vendor/tracemonkey/xpconnect/src/xpccomponents.cpp +4144 -0
- data/vendor/tracemonkey/xpconnect/src/xpccontext.cpp +115 -0
- data/vendor/tracemonkey/xpconnect/src/xpcconvert.cpp +2298 -0
- data/vendor/tracemonkey/xpconnect/src/xpcdebug.cpp +481 -0
- data/vendor/tracemonkey/xpconnect/src/xpcexception.cpp +502 -0
- data/vendor/tracemonkey/xpconnect/src/xpcforwards.h +114 -0
- data/vendor/tracemonkey/xpconnect/src/xpcinlines.h +772 -0
- data/vendor/tracemonkey/xpconnect/src/xpcjsid.cpp +1025 -0
- data/vendor/tracemonkey/xpconnect/src/xpcjsruntime.cpp +1342 -0
- data/vendor/tracemonkey/xpconnect/src/xpclog.cpp +128 -0
- data/vendor/tracemonkey/xpconnect/src/xpclog.h +101 -0
- data/vendor/tracemonkey/xpconnect/src/xpcmaps.cpp +761 -0
- data/vendor/tracemonkey/xpconnect/src/xpcmaps.h +713 -0
- data/vendor/tracemonkey/xpconnect/src/xpcmodule.cpp +136 -0
- data/vendor/tracemonkey/xpconnect/src/xpcprivate.h +4138 -0
- data/vendor/tracemonkey/xpconnect/src/xpcquickstubs.cpp +1128 -0
- data/vendor/tracemonkey/xpconnect/src/xpcquickstubs.h +480 -0
- data/vendor/tracemonkey/xpconnect/src/xpcruntimesvc.cpp +179 -0
- data/vendor/tracemonkey/xpconnect/src/xpcstack.cpp +342 -0
- data/vendor/tracemonkey/xpconnect/src/xpcstring.cpp +139 -0
- data/vendor/tracemonkey/xpconnect/src/xpcthreadcontext.cpp +599 -0
- data/vendor/tracemonkey/xpconnect/src/xpcthrower.cpp +399 -0
- data/vendor/tracemonkey/xpconnect/src/xpcvariant.cpp +850 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappedjs.cpp +670 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappedjsclass.cpp +2015 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappednative.cpp +3482 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappednativeinfo.cpp +945 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappednativejsops.cpp +2003 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappednativeproto.cpp +302 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappednativescope.cpp +991 -0
- data/vendor/tracemonkey/xpconnect/tests/Makefile.in +75 -0
- data/vendor/tracemonkey/xpconnect/tests/TestXPC.cpp +785 -0
- data/vendor/tracemonkey/xpconnect/tests/chrome/Makefile.in +51 -0
- data/vendor/tracemonkey/xpconnect/tests/chrome/test_bug500931.xul +43 -0
- data/vendor/tracemonkey/xpconnect/tests/components/Makefile.in +85 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_array.cpp +388 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_attributes.cpp +305 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_calljs.cpp +135 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_child.cpp +225 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_const.cpp +76 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_domstring.cpp +118 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_echo.cpp +616 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_in.cpp +204 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_inout.cpp +171 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_module.cpp +77 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_multiple.cpp +554 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_noisy.cpp +154 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_out.cpp +335 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_overloaded.cpp +250 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_private.h +192 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_string.cpp +185 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_variant.cpp +355 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/StdAfx.cpp +12 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/StdAfx.h +28 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCDispUtilities.h +28 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.cpp +86 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.def +9 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.dsp +318 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.dsw +29 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.idl +454 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.rc +145 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.cpp +44 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.h +56 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.cpp +221 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.h +53 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.cpp +699 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.h +138 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.cpp +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.h +41 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.cpp +256 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.h +88 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.cpp +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.h +43 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.cpp +29 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.h +45 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.cpp +177 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.h +50 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/resource.h +36 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Arrays/XPCIDispatchArrayTests.js +54 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Attributes/XPCIDispatchAttributeTests.js +150 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/General/XPCIDispatchInstantiations.js +122 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/General/XPCStress.js +58 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Methods/XPCIDispatchMethodTests.js +376 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/shell.js +377 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedJS/General/XPCIDispatchTestWrappedJS.js +76 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedJS/shell.js +377 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/exectests.cmd +1 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/jsDriver.pl +1288 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/Makefile.in +61 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest.idl +312 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest2.idl +51 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_attributes.idl +67 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_calljs.idl +59 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_const.idl +61 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_domstring.idl +59 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_in.idl +88 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_inout.idl +86 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_multiple.idl +77 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_out.idl +142 -0
- data/vendor/tracemonkey/xpconnect/tests/js/checkid.js +82 -0
- data/vendor/tracemonkey/xpconnect/tests/js/evaluate.js +311 -0
- data/vendor/tracemonkey/xpconnect/tests/js/exceptions-2.js +153 -0
- data/vendor/tracemonkey/xpconnect/tests/js/exceptions-3.js +194 -0
- data/vendor/tracemonkey/xpconnect/tests/js/exceptions-4.js +297 -0
- data/vendor/tracemonkey/xpconnect/tests/js/exceptions-5.js +343 -0
- data/vendor/tracemonkey/xpconnect/tests/js/exceptions.js +230 -0
- data/vendor/tracemonkey/xpconnect/tests/js/javascript.js +96 -0
- data/vendor/tracemonkey/xpconnect/tests/js/multiple-2.js +151 -0
- data/vendor/tracemonkey/xpconnect/tests/js/multiple-3.js +148 -0
- data/vendor/tracemonkey/xpconnect/tests/js/multiple-4.js +152 -0
- data/vendor/tracemonkey/xpconnect/tests/js/multiple.js +137 -0
- data/vendor/tracemonkey/xpconnect/tests/js/notscriptable.js +104 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/simpletest.js +36 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/speed.js +60 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/testxpc.js +464 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/threads.js +74 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/try.js +27 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_array.js +308 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_callcontext.js +68 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_echo.js +636 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_and_sort.js +28 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_constants.js +15 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_create.js +200 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_exceptions.js +167 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_ids.js +135 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_observer.js +36 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_overloaded.js +14 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_primitives.js +141 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_propertybag.js +36 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_variant.js +339 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_variant_array.js +30 -0
- data/vendor/tracemonkey/xpconnect/tests/js/readonlyattributes.js +74 -0
- data/vendor/tracemonkey/xpconnect/tests/js/readwriteattributes.js +101 -0
- data/vendor/tracemonkey/xpconnect/tests/js/scriptable.js +120 -0
- data/vendor/tracemonkey/xpconnect/tests/js/testin.js +203 -0
- data/vendor/tracemonkey/xpconnect/tests/js/xpcfun.js +234 -0
- data/vendor/tracemonkey/xpconnect/tests/js/xpctest_primitives.js +200 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/Makefile.in +66 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/bug500931_helper.html +7 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/inner.html +7 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug361111.xul +29 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug384632.html +32 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug390488.html +65 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug393269.html +46 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug396851.html +43 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug428021.html +41 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug446584.html +49 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug448587.html +31 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug462428.html +42 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug478438.html +66 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug484107.html +100 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug484459.html +36 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug500691.html +28 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_wrappers.html +116 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/bogus_element_type.jsm +1 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/bogus_exports_type.jsm +1 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/bug451678_subscript.js +2 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/component_import.js +144 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/recursive_importA.jsm +44 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/recursive_importB.jsm +45 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/syntax_error.jsm +1 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_bogus_files.js +88 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_bug408412.js +51 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_bug451678.js +52 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_bug_442086.js +68 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_import.js +127 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_js_weak_references.js +63 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_recursive_import.js +62 -0
- data/vendor/tracemonkey/xpconnect/tools/Makefile.in +49 -0
- data/vendor/tracemonkey/xpconnect/tools/idl/Makefile.in +53 -0
- data/vendor/tracemonkey/xpconnect/tools/idl/nsIXPCToolsCompiler.idl +60 -0
- data/vendor/tracemonkey/xpconnect/tools/idl/nsIXPCToolsProfiler.idl +57 -0
- data/vendor/tracemonkey/xpconnect/tools/js/CompileJSFiles.js +28 -0
- data/vendor/tracemonkey/xpconnect/tools/js/ListJSFiles.js +18 -0
- data/vendor/tracemonkey/xpconnect/tools/src/Makefile.in +76 -0
- data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsCompiler.cpp +161 -0
- data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsModule.cpp +65 -0
- data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsProfiler.cpp +370 -0
- data/vendor/tracemonkey/xpconnect/tools/src/xpctools_private.h +236 -0
- metadata +782 -107
- data/test/johnson/nodes/export_test.rb +0 -9
- data/test/johnson/nodes/import_test.rb +0 -13
- data/test/johnson/version_test.rb +0 -13
|
@@ -0,0 +1,870 @@
|
|
|
1
|
+
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
2
|
+
* vim: set ts=8 sw=4 et tw=78:
|
|
3
|
+
*
|
|
4
|
+
* ***** BEGIN LICENSE BLOCK *****
|
|
5
|
+
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
6
|
+
*
|
|
7
|
+
* The contents of this file are subject to the Mozilla Public License Version
|
|
8
|
+
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
9
|
+
* the License. You may obtain a copy of the License at
|
|
10
|
+
* http://www.mozilla.org/MPL/
|
|
11
|
+
*
|
|
12
|
+
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
13
|
+
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
14
|
+
* for the specific language governing rights and limitations under the
|
|
15
|
+
* License.
|
|
16
|
+
*
|
|
17
|
+
* The Original Code is Mozilla Communicator client code, released
|
|
18
|
+
* March 31, 1998.
|
|
19
|
+
*
|
|
20
|
+
* The Initial Developer of the Original Code is
|
|
21
|
+
* Netscape Communications Corporation.
|
|
22
|
+
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
23
|
+
* the Initial Developer. All Rights Reserved.
|
|
24
|
+
*
|
|
25
|
+
* Contributor(s):
|
|
26
|
+
*
|
|
27
|
+
* Alternatively, the contents of this file may be used under the terms of
|
|
28
|
+
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
29
|
+
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
30
|
+
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
31
|
+
* of those above. If you wish to allow use of your version of this file only
|
|
32
|
+
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
33
|
+
* use your version of this file under the terms of the MPL, indicate your
|
|
34
|
+
* decision by deleting the provisions above and replace them with the notice
|
|
35
|
+
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
36
|
+
* the provisions above, a recipient may use your version of this file under
|
|
37
|
+
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
38
|
+
*
|
|
39
|
+
* ***** END LICENSE BLOCK ***** */
|
|
40
|
+
|
|
41
|
+
#ifndef jsobj_h___
|
|
42
|
+
#define jsobj_h___
|
|
43
|
+
/*
|
|
44
|
+
* JS object definitions.
|
|
45
|
+
*
|
|
46
|
+
* A JS object consists of a possibly-shared object descriptor containing
|
|
47
|
+
* ordered property names, called the map; and a dense vector of property
|
|
48
|
+
* values, called slots. The map/slot pointer pair is GC'ed, while the map
|
|
49
|
+
* is reference counted and the slot vector is malloc'ed.
|
|
50
|
+
*/
|
|
51
|
+
#include "jshash.h" /* Added by JSIFY */
|
|
52
|
+
#include "jsprvtd.h"
|
|
53
|
+
#include "jspubtd.h"
|
|
54
|
+
|
|
55
|
+
JS_BEGIN_EXTERN_C
|
|
56
|
+
|
|
57
|
+
/* For detailed comments on these function pointer types, see jsprvtd.h. */
|
|
58
|
+
struct JSObjectOps {
|
|
59
|
+
/*
|
|
60
|
+
* Custom shared object map for non-native objects. For native objects
|
|
61
|
+
* this should be null indicating, that JSObject.map is an instance of
|
|
62
|
+
* JSScope.
|
|
63
|
+
*/
|
|
64
|
+
const JSObjectMap *objectMap;
|
|
65
|
+
|
|
66
|
+
/* Mandatory non-null function pointer members. */
|
|
67
|
+
JSLookupPropOp lookupProperty;
|
|
68
|
+
JSDefinePropOp defineProperty;
|
|
69
|
+
JSPropertyIdOp getProperty;
|
|
70
|
+
JSPropertyIdOp setProperty;
|
|
71
|
+
JSAttributesOp getAttributes;
|
|
72
|
+
JSAttributesOp setAttributes;
|
|
73
|
+
JSPropertyIdOp deleteProperty;
|
|
74
|
+
JSConvertOp defaultValue;
|
|
75
|
+
JSNewEnumerateOp enumerate;
|
|
76
|
+
JSCheckAccessIdOp checkAccess;
|
|
77
|
+
|
|
78
|
+
/* Optionally non-null members start here. */
|
|
79
|
+
JSObjectOp thisObject;
|
|
80
|
+
JSPropertyRefOp dropProperty;
|
|
81
|
+
JSNative call;
|
|
82
|
+
JSNative construct;
|
|
83
|
+
JSHasInstanceOp hasInstance;
|
|
84
|
+
JSTraceOp trace;
|
|
85
|
+
JSFinalizeOp clear;
|
|
86
|
+
JSGetRequiredSlotOp getRequiredSlot;
|
|
87
|
+
JSSetRequiredSlotOp setRequiredSlot;
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
struct JSObjectMap {
|
|
91
|
+
JSObjectOps *ops; /* high level object operation vtable */
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
/* Shorthand macros for frequently-made calls. */
|
|
95
|
+
#define OBJ_LOOKUP_PROPERTY(cx,obj,id,objp,propp) \
|
|
96
|
+
(obj)->map->ops->lookupProperty(cx,obj,id,objp,propp)
|
|
97
|
+
#define OBJ_DEFINE_PROPERTY(cx,obj,id,value,getter,setter,attrs,propp) \
|
|
98
|
+
(obj)->map->ops->defineProperty(cx,obj,id,value,getter,setter,attrs,propp)
|
|
99
|
+
#define OBJ_GET_PROPERTY(cx,obj,id,vp) \
|
|
100
|
+
(obj)->map->ops->getProperty(cx,obj,id,vp)
|
|
101
|
+
#define OBJ_SET_PROPERTY(cx,obj,id,vp) \
|
|
102
|
+
(obj)->map->ops->setProperty(cx,obj,id,vp)
|
|
103
|
+
#define OBJ_GET_ATTRIBUTES(cx,obj,id,prop,attrsp) \
|
|
104
|
+
(obj)->map->ops->getAttributes(cx,obj,id,prop,attrsp)
|
|
105
|
+
#define OBJ_SET_ATTRIBUTES(cx,obj,id,prop,attrsp) \
|
|
106
|
+
(obj)->map->ops->setAttributes(cx,obj,id,prop,attrsp)
|
|
107
|
+
#define OBJ_DELETE_PROPERTY(cx,obj,id,rval) \
|
|
108
|
+
(obj)->map->ops->deleteProperty(cx,obj,id,rval)
|
|
109
|
+
#define OBJ_DEFAULT_VALUE(cx,obj,hint,vp) \
|
|
110
|
+
(obj)->map->ops->defaultValue(cx,obj,hint,vp)
|
|
111
|
+
#define OBJ_ENUMERATE(cx,obj,enum_op,statep,idp) \
|
|
112
|
+
(obj)->map->ops->enumerate(cx,obj,enum_op,statep,idp)
|
|
113
|
+
#define OBJ_CHECK_ACCESS(cx,obj,id,mode,vp,attrsp) \
|
|
114
|
+
(obj)->map->ops->checkAccess(cx,obj,id,mode,vp,attrsp)
|
|
115
|
+
|
|
116
|
+
/* These four are time-optimized to avoid stub calls. */
|
|
117
|
+
#define OBJ_THIS_OBJECT(cx,obj) \
|
|
118
|
+
((obj)->map->ops->thisObject \
|
|
119
|
+
? (obj)->map->ops->thisObject(cx,obj) \
|
|
120
|
+
: (obj))
|
|
121
|
+
#define OBJ_DROP_PROPERTY(cx,obj,prop) \
|
|
122
|
+
((obj)->map->ops->dropProperty \
|
|
123
|
+
? (obj)->map->ops->dropProperty(cx,obj,prop) \
|
|
124
|
+
: (void)0)
|
|
125
|
+
#define OBJ_GET_REQUIRED_SLOT(cx,obj,slot) \
|
|
126
|
+
((obj)->map->ops->getRequiredSlot \
|
|
127
|
+
? (obj)->map->ops->getRequiredSlot(cx, obj, slot) \
|
|
128
|
+
: JSVAL_VOID)
|
|
129
|
+
#define OBJ_SET_REQUIRED_SLOT(cx,obj,slot,v) \
|
|
130
|
+
((obj)->map->ops->setRequiredSlot \
|
|
131
|
+
? (obj)->map->ops->setRequiredSlot(cx, obj, slot, v) \
|
|
132
|
+
: JS_TRUE)
|
|
133
|
+
|
|
134
|
+
#define OBJ_TO_INNER_OBJECT(cx,obj) \
|
|
135
|
+
JS_BEGIN_MACRO \
|
|
136
|
+
JSClass *clasp_ = OBJ_GET_CLASS(cx, obj); \
|
|
137
|
+
if (clasp_->flags & JSCLASS_IS_EXTENDED) { \
|
|
138
|
+
JSExtendedClass *xclasp_ = (JSExtendedClass*)clasp_; \
|
|
139
|
+
if (xclasp_->innerObject) \
|
|
140
|
+
obj = xclasp_->innerObject(cx, obj); \
|
|
141
|
+
} \
|
|
142
|
+
JS_END_MACRO
|
|
143
|
+
|
|
144
|
+
#define OBJ_TO_OUTER_OBJECT(cx,obj) \
|
|
145
|
+
JS_BEGIN_MACRO \
|
|
146
|
+
JSClass *clasp_ = OBJ_GET_CLASS(cx, obj); \
|
|
147
|
+
if (clasp_->flags & JSCLASS_IS_EXTENDED) { \
|
|
148
|
+
JSExtendedClass *xclasp_ = (JSExtendedClass*)clasp_; \
|
|
149
|
+
if (xclasp_->outerObject) \
|
|
150
|
+
obj = xclasp_->outerObject(cx, obj); \
|
|
151
|
+
} \
|
|
152
|
+
JS_END_MACRO
|
|
153
|
+
|
|
154
|
+
#define JS_INITIAL_NSLOTS 5
|
|
155
|
+
|
|
156
|
+
/*
|
|
157
|
+
* JSObject struct, with members sized to fit in 32 bytes on 32-bit targets,
|
|
158
|
+
* 64 bytes on 64-bit systems. The JSFunction struct is an extension of this
|
|
159
|
+
* struct allocated from a larger GC size-class.
|
|
160
|
+
*
|
|
161
|
+
* The classword member stores the JSClass pointer for this object, with the
|
|
162
|
+
* least two bits encoding whether this object is a "delegate" or a "system"
|
|
163
|
+
* object.
|
|
164
|
+
*
|
|
165
|
+
* An object is a delegate if it is on another object's prototype (linked by
|
|
166
|
+
* JSSLOT_PROTO) or scope (JSSLOT_PARENT) chain, and therefore the delegate
|
|
167
|
+
* might be asked implicitly to get or set a property on behalf of another
|
|
168
|
+
* object. Delegates may be accessed directly too, as may any object, but only
|
|
169
|
+
* those objects linked after the head of any prototype or scope chain are
|
|
170
|
+
* flagged as delegates. This definition helps to optimize shape-based property
|
|
171
|
+
* cache invalidation (see Purge{Scope,Proto}Chain in jsobj.cpp).
|
|
172
|
+
*
|
|
173
|
+
* The meaning of the system object bit is defined by the API client. It is
|
|
174
|
+
* set in JS_NewSystemObject and is queried by JS_IsSystemObject (jsdbgapi.h),
|
|
175
|
+
* but it has no intrinsic meaning to SpiderMonkey. Further, JSFILENAME_SYSTEM
|
|
176
|
+
* and JS_FlagScriptFilenamePrefix (also exported via jsdbgapi.h) are intended
|
|
177
|
+
* to be complementary to this bit, but it is up to the API client to implement
|
|
178
|
+
* any such association.
|
|
179
|
+
*
|
|
180
|
+
* Both these classword tag bits are initially zero; they may be set or queried
|
|
181
|
+
* using the STOBJ_(IS|SET)_(DELEGATE|SYSTEM) macros.
|
|
182
|
+
*
|
|
183
|
+
* The dslots member is null or a pointer into a dynamically allocated vector
|
|
184
|
+
* of jsvals for reserved and dynamic slots. If dslots is not null, dslots[-1]
|
|
185
|
+
* records the number of available slots.
|
|
186
|
+
*/
|
|
187
|
+
struct JSObject {
|
|
188
|
+
JSObjectMap *map; /* propery map, see jsscope.h */
|
|
189
|
+
jsuword classword; /* classword, see above */
|
|
190
|
+
jsval fslots[JS_INITIAL_NSLOTS]; /* small number of fixed slots */
|
|
191
|
+
jsval *dslots; /* dynamically allocated slots */
|
|
192
|
+
};
|
|
193
|
+
|
|
194
|
+
#define JSSLOT_PROTO 0
|
|
195
|
+
#define JSSLOT_PARENT 1
|
|
196
|
+
#define JSSLOT_PRIVATE 2
|
|
197
|
+
#define JSSLOT_START(clasp) (((clasp)->flags & JSCLASS_HAS_PRIVATE) \
|
|
198
|
+
? JSSLOT_PRIVATE + 1 \
|
|
199
|
+
: JSSLOT_PARENT + 1)
|
|
200
|
+
|
|
201
|
+
#define JSSLOT_FREE(clasp) (JSSLOT_START(clasp) \
|
|
202
|
+
+ JSCLASS_RESERVED_SLOTS(clasp))
|
|
203
|
+
|
|
204
|
+
/*
|
|
205
|
+
* Maximum net gross capacity of the obj->dslots vector, excluding the additional
|
|
206
|
+
* hidden slot used to store the length of the vector.
|
|
207
|
+
*/
|
|
208
|
+
#define MAX_DSLOTS_LENGTH (JS_MAX(~(uint32)0, ~(size_t)0) / sizeof(jsval))
|
|
209
|
+
|
|
210
|
+
/*
|
|
211
|
+
* STOBJ prefix means Single Threaded Object. Use the following fast macros to
|
|
212
|
+
* directly manipulate slots in obj when only one thread can access obj, or
|
|
213
|
+
* when accessing read-only slots within JS_INITIAL_NSLOTS.
|
|
214
|
+
*/
|
|
215
|
+
|
|
216
|
+
#define STOBJ_NSLOTS(obj) \
|
|
217
|
+
((obj)->dslots ? (uint32)(obj)->dslots[-1] : (uint32)JS_INITIAL_NSLOTS)
|
|
218
|
+
|
|
219
|
+
#define STOBJ_GET_SLOT(obj,slot) \
|
|
220
|
+
((slot) < JS_INITIAL_NSLOTS \
|
|
221
|
+
? (obj)->fslots[(slot)] \
|
|
222
|
+
: (JS_ASSERT((slot) < (uint32)(obj)->dslots[-1]), \
|
|
223
|
+
(obj)->dslots[(slot) - JS_INITIAL_NSLOTS]))
|
|
224
|
+
|
|
225
|
+
#define STOBJ_SET_SLOT(obj,slot,value) \
|
|
226
|
+
((slot) < JS_INITIAL_NSLOTS \
|
|
227
|
+
? (obj)->fslots[(slot)] = (value) \
|
|
228
|
+
: (JS_ASSERT((slot) < (uint32)(obj)->dslots[-1]), \
|
|
229
|
+
(obj)->dslots[(slot) - JS_INITIAL_NSLOTS] = (value)))
|
|
230
|
+
|
|
231
|
+
#define STOBJ_GET_PROTO(obj) \
|
|
232
|
+
JSVAL_TO_OBJECT((obj)->fslots[JSSLOT_PROTO])
|
|
233
|
+
#define STOBJ_SET_PROTO(obj,proto) \
|
|
234
|
+
(void)(STOBJ_NULLSAFE_SET_DELEGATE(proto), \
|
|
235
|
+
(obj)->fslots[JSSLOT_PROTO] = OBJECT_TO_JSVAL(proto))
|
|
236
|
+
#define STOBJ_CLEAR_PROTO(obj) \
|
|
237
|
+
((obj)->fslots[JSSLOT_PROTO] = JSVAL_NULL)
|
|
238
|
+
|
|
239
|
+
#define STOBJ_GET_PARENT(obj) \
|
|
240
|
+
JSVAL_TO_OBJECT((obj)->fslots[JSSLOT_PARENT])
|
|
241
|
+
#define STOBJ_SET_PARENT(obj,parent) \
|
|
242
|
+
(void)(STOBJ_NULLSAFE_SET_DELEGATE(parent), \
|
|
243
|
+
(obj)->fslots[JSSLOT_PARENT] = OBJECT_TO_JSVAL(parent))
|
|
244
|
+
#define STOBJ_CLEAR_PARENT(obj) \
|
|
245
|
+
((obj)->fslots[JSSLOT_PARENT] = JSVAL_NULL)
|
|
246
|
+
|
|
247
|
+
/*
|
|
248
|
+
* We use JSObject.classword to store both JSClass* and the delegate and system
|
|
249
|
+
* flags in the two least significant bits. We do *not* synchronize updates of
|
|
250
|
+
* obj->classword -- API clients must take care.
|
|
251
|
+
*/
|
|
252
|
+
#define JSSLOT_CLASS_MASK_BITS 3
|
|
253
|
+
|
|
254
|
+
static JS_ALWAYS_INLINE JSClass*
|
|
255
|
+
STOBJ_GET_CLASS(const JSObject* obj)
|
|
256
|
+
{
|
|
257
|
+
return (JSClass *) (obj->classword & ~JSSLOT_CLASS_MASK_BITS);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
#define STOBJ_IS_DELEGATE(obj) (((obj)->classword & 1) != 0)
|
|
261
|
+
#define STOBJ_SET_DELEGATE(obj) ((obj)->classword |= 1)
|
|
262
|
+
#define STOBJ_NULLSAFE_SET_DELEGATE(obj) \
|
|
263
|
+
(!(obj) || STOBJ_SET_DELEGATE((JSObject*)obj))
|
|
264
|
+
#define STOBJ_IS_SYSTEM(obj) (((obj)->classword & 2) != 0)
|
|
265
|
+
#define STOBJ_SET_SYSTEM(obj) ((obj)->classword |= 2)
|
|
266
|
+
|
|
267
|
+
#define STOBJ_GET_PRIVATE(obj) \
|
|
268
|
+
(JS_ASSERT(JSVAL_IS_INT(STOBJ_GET_SLOT(obj, JSSLOT_PRIVATE))), \
|
|
269
|
+
JSVAL_TO_PRIVATE(STOBJ_GET_SLOT(obj, JSSLOT_PRIVATE)))
|
|
270
|
+
|
|
271
|
+
#define OBJ_CHECK_SLOT(obj,slot) \
|
|
272
|
+
JS_ASSERT_IF(OBJ_IS_NATIVE(obj), slot < OBJ_SCOPE(obj)->freeslot)
|
|
273
|
+
|
|
274
|
+
#define LOCKED_OBJ_GET_SLOT(obj,slot) \
|
|
275
|
+
(OBJ_CHECK_SLOT(obj, slot), STOBJ_GET_SLOT(obj, slot))
|
|
276
|
+
#define LOCKED_OBJ_SET_SLOT(obj,slot,value) \
|
|
277
|
+
(OBJ_CHECK_SLOT(obj, slot), STOBJ_SET_SLOT(obj, slot, value))
|
|
278
|
+
|
|
279
|
+
/*
|
|
280
|
+
* NB: Don't call LOCKED_OBJ_SET_SLOT or STOBJ_SET_SLOT for a write to a slot
|
|
281
|
+
* that may contain a function reference already, or where the new value is a
|
|
282
|
+
* function ref, and the object's scope may be branded with a property cache
|
|
283
|
+
* structural type capability that distinguishes versions of the object with
|
|
284
|
+
* and without the function property. Instead use LOCKED_OBJ_WRITE_BARRIER or
|
|
285
|
+
* a fast inline equivalent (JSOP_SETNAME/JSOP_SETPROP cases in jsinterp.c).
|
|
286
|
+
*/
|
|
287
|
+
#define LOCKED_OBJ_WRITE_BARRIER(cx,obj,slot,newval) \
|
|
288
|
+
JS_BEGIN_MACRO \
|
|
289
|
+
JSScope *scope_ = OBJ_SCOPE(obj); \
|
|
290
|
+
JS_ASSERT(scope_->object == (obj)); \
|
|
291
|
+
GC_WRITE_BARRIER(cx, scope_, LOCKED_OBJ_GET_SLOT(obj, slot), newval); \
|
|
292
|
+
LOCKED_OBJ_SET_SLOT(obj, slot, newval); \
|
|
293
|
+
JS_END_MACRO
|
|
294
|
+
|
|
295
|
+
#define LOCKED_OBJ_GET_PROTO(obj) \
|
|
296
|
+
(OBJ_CHECK_SLOT(obj, JSSLOT_PROTO), STOBJ_GET_PROTO(obj))
|
|
297
|
+
#define LOCKED_OBJ_SET_PROTO(obj,proto) \
|
|
298
|
+
(OBJ_CHECK_SLOT(obj, JSSLOT_PROTO), STOBJ_SET_PROTO(obj, proto))
|
|
299
|
+
|
|
300
|
+
#define LOCKED_OBJ_GET_PARENT(obj) \
|
|
301
|
+
(OBJ_CHECK_SLOT(obj, JSSLOT_PARENT), STOBJ_GET_PARENT(obj))
|
|
302
|
+
#define LOCKED_OBJ_SET_PARENT(obj,parent) \
|
|
303
|
+
(OBJ_CHECK_SLOT(obj, JSSLOT_PARENT), STOBJ_SET_PARENT(obj, parent))
|
|
304
|
+
|
|
305
|
+
#define LOCKED_OBJ_GET_CLASS(obj) \
|
|
306
|
+
STOBJ_GET_CLASS(obj)
|
|
307
|
+
|
|
308
|
+
#define LOCKED_OBJ_GET_PRIVATE(obj) \
|
|
309
|
+
(OBJ_CHECK_SLOT(obj, JSSLOT_PRIVATE), STOBJ_GET_PRIVATE(obj))
|
|
310
|
+
|
|
311
|
+
#ifdef JS_THREADSAFE
|
|
312
|
+
|
|
313
|
+
/* Thread-safe functions and wrapper macros for accessing slots in obj. */
|
|
314
|
+
#define OBJ_GET_SLOT(cx,obj,slot) \
|
|
315
|
+
(OBJ_CHECK_SLOT(obj, slot), \
|
|
316
|
+
(OBJ_IS_NATIVE(obj) && OBJ_SCOPE(obj)->title.ownercx == cx) \
|
|
317
|
+
? LOCKED_OBJ_GET_SLOT(obj, slot) \
|
|
318
|
+
: js_GetSlotThreadSafe(cx, obj, slot))
|
|
319
|
+
|
|
320
|
+
#define OBJ_SET_SLOT(cx,obj,slot,value) \
|
|
321
|
+
JS_BEGIN_MACRO \
|
|
322
|
+
OBJ_CHECK_SLOT(obj, slot); \
|
|
323
|
+
if (OBJ_IS_NATIVE(obj) && OBJ_SCOPE(obj)->title.ownercx == cx) \
|
|
324
|
+
LOCKED_OBJ_WRITE_BARRIER(cx, obj, slot, value); \
|
|
325
|
+
else \
|
|
326
|
+
js_SetSlotThreadSafe(cx, obj, slot, value); \
|
|
327
|
+
JS_END_MACRO
|
|
328
|
+
|
|
329
|
+
/*
|
|
330
|
+
* If thread-safe, define an OBJ_GET_SLOT wrapper that bypasses, for a native
|
|
331
|
+
* object, the lock-free "fast path" test of (OBJ_SCOPE(obj)->ownercx == cx),
|
|
332
|
+
* to avoid needlessly switching from lock-free to lock-full scope when doing
|
|
333
|
+
* GC on a different context from the last one to own the scope. The caller
|
|
334
|
+
* in this case is probably a JSClass.mark function, e.g., fun_mark, or maybe
|
|
335
|
+
* a finalizer.
|
|
336
|
+
*
|
|
337
|
+
* The GC runs only when all threads except the one on which the GC is active
|
|
338
|
+
* are suspended at GC-safe points, so calling STOBJ_GET_SLOT from the GC's
|
|
339
|
+
* thread is safe when rt->gcRunning is set. See jsgc.c for details.
|
|
340
|
+
*/
|
|
341
|
+
#define THREAD_IS_RUNNING_GC(rt, thread) \
|
|
342
|
+
((rt)->gcRunning && (rt)->gcThread == (thread))
|
|
343
|
+
|
|
344
|
+
#define CX_THREAD_IS_RUNNING_GC(cx) \
|
|
345
|
+
THREAD_IS_RUNNING_GC((cx)->runtime, (cx)->thread)
|
|
346
|
+
|
|
347
|
+
#else /* !JS_THREADSAFE */
|
|
348
|
+
|
|
349
|
+
#define OBJ_GET_SLOT(cx,obj,slot) LOCKED_OBJ_GET_SLOT(obj,slot)
|
|
350
|
+
#define OBJ_SET_SLOT(cx,obj,slot,value) LOCKED_OBJ_WRITE_BARRIER(cx,obj,slot, \
|
|
351
|
+
value)
|
|
352
|
+
|
|
353
|
+
#endif /* !JS_THREADSAFE */
|
|
354
|
+
|
|
355
|
+
/* Thread-safe delegate, proto, parent, and class access macros. */
|
|
356
|
+
#define OBJ_IS_DELEGATE(cx,obj) STOBJ_IS_DELEGATE(obj)
|
|
357
|
+
#define OBJ_SET_DELEGATE(cx,obj) STOBJ_SET_DELEGATE(obj)
|
|
358
|
+
|
|
359
|
+
#define OBJ_GET_PROTO(cx,obj) STOBJ_GET_PROTO(obj)
|
|
360
|
+
#define OBJ_SET_PROTO(cx,obj,proto) STOBJ_SET_PROTO(obj, proto)
|
|
361
|
+
#define OBJ_CLEAR_PROTO(cx,obj) STOBJ_CLEAR_PROTO(obj)
|
|
362
|
+
|
|
363
|
+
#define OBJ_GET_PARENT(cx,obj) STOBJ_GET_PARENT(obj)
|
|
364
|
+
#define OBJ_SET_PARENT(cx,obj,parent) STOBJ_SET_PARENT(obj, parent)
|
|
365
|
+
#define OBJ_CLEAR_PARENT(cx,obj) STOBJ_CLEAR_PARENT(obj)
|
|
366
|
+
|
|
367
|
+
/*
|
|
368
|
+
* Class is invariant and comes from the fixed clasp member. Thus no locking
|
|
369
|
+
* is necessary to read it. Same for the private slot.
|
|
370
|
+
*/
|
|
371
|
+
#define OBJ_GET_CLASS(cx,obj) STOBJ_GET_CLASS(obj)
|
|
372
|
+
#define OBJ_GET_PRIVATE(cx,obj) STOBJ_GET_PRIVATE(obj)
|
|
373
|
+
|
|
374
|
+
/*
|
|
375
|
+
* Test whether the object is native. FIXME bug 492938: consider how it would
|
|
376
|
+
* affect the performance to do just the !ops->objectMap check.
|
|
377
|
+
*/
|
|
378
|
+
#define OPS_IS_NATIVE(ops) \
|
|
379
|
+
JS_LIKELY((ops) == &js_ObjectOps || !(ops)->objectMap)
|
|
380
|
+
|
|
381
|
+
#define OBJ_IS_NATIVE(obj) OPS_IS_NATIVE((obj)->map->ops)
|
|
382
|
+
|
|
383
|
+
extern JS_FRIEND_DATA(JSObjectOps) js_ObjectOps;
|
|
384
|
+
extern JS_FRIEND_DATA(JSObjectOps) js_WithObjectOps;
|
|
385
|
+
extern JSClass js_ObjectClass;
|
|
386
|
+
extern JSClass js_WithClass;
|
|
387
|
+
extern JSClass js_BlockClass;
|
|
388
|
+
|
|
389
|
+
/*
|
|
390
|
+
* Block scope object macros. The slots reserved by js_BlockClass are:
|
|
391
|
+
*
|
|
392
|
+
* JSSLOT_PRIVATE JSStackFrame * active frame pointer or null
|
|
393
|
+
* JSSLOT_BLOCK_DEPTH int depth of block slots in frame
|
|
394
|
+
*
|
|
395
|
+
* After JSSLOT_BLOCK_DEPTH come one or more slots for the block locals.
|
|
396
|
+
*
|
|
397
|
+
* A With object is like a Block object, in that both have one reserved slot
|
|
398
|
+
* telling the stack depth of the relevant slots (the slot whose value is the
|
|
399
|
+
* object named in the with statement, the slots containing the block's local
|
|
400
|
+
* variables); and both have a private slot referring to the JSStackFrame in
|
|
401
|
+
* whose activation they were created (or null if the with or block object
|
|
402
|
+
* outlives the frame).
|
|
403
|
+
*/
|
|
404
|
+
#define JSSLOT_BLOCK_DEPTH (JSSLOT_PRIVATE + 1)
|
|
405
|
+
|
|
406
|
+
#define OBJ_IS_CLONED_BLOCK(obj) \
|
|
407
|
+
(OBJ_SCOPE(obj)->object != (obj))
|
|
408
|
+
#define OBJ_BLOCK_COUNT(cx,obj) \
|
|
409
|
+
(OBJ_SCOPE(obj)->entryCount)
|
|
410
|
+
#define OBJ_BLOCK_DEPTH(cx,obj) \
|
|
411
|
+
JSVAL_TO_INT(STOBJ_GET_SLOT(obj, JSSLOT_BLOCK_DEPTH))
|
|
412
|
+
#define OBJ_SET_BLOCK_DEPTH(cx,obj,depth) \
|
|
413
|
+
STOBJ_SET_SLOT(obj, JSSLOT_BLOCK_DEPTH, INT_TO_JSVAL(depth))
|
|
414
|
+
|
|
415
|
+
/*
|
|
416
|
+
* To make sure this slot is well-defined, always call js_NewWithObject to
|
|
417
|
+
* create a With object, don't call js_NewObject directly. When creating a
|
|
418
|
+
* With object that does not correspond to a stack slot, pass -1 for depth.
|
|
419
|
+
*
|
|
420
|
+
* When popping the stack across this object's "with" statement, client code
|
|
421
|
+
* must call JS_SetPrivate(cx, withobj, NULL).
|
|
422
|
+
*/
|
|
423
|
+
extern JS_REQUIRES_STACK JSObject *
|
|
424
|
+
js_NewWithObject(JSContext *cx, JSObject *proto, JSObject *parent, jsint depth);
|
|
425
|
+
|
|
426
|
+
/*
|
|
427
|
+
* Create a new block scope object not linked to any proto or parent object.
|
|
428
|
+
* Blocks are created by the compiler to reify let blocks and comprehensions.
|
|
429
|
+
* Only when dynamic scope is captured do they need to be cloned and spliced
|
|
430
|
+
* into an active scope chain.
|
|
431
|
+
*/
|
|
432
|
+
extern JSObject *
|
|
433
|
+
js_NewBlockObject(JSContext *cx);
|
|
434
|
+
|
|
435
|
+
extern JSObject *
|
|
436
|
+
js_CloneBlockObject(JSContext *cx, JSObject *proto, JSObject *parent,
|
|
437
|
+
JSStackFrame *fp);
|
|
438
|
+
|
|
439
|
+
extern JS_REQUIRES_STACK JSBool
|
|
440
|
+
js_PutBlockObject(JSContext *cx, JSBool normalUnwind);
|
|
441
|
+
|
|
442
|
+
JSBool
|
|
443
|
+
js_XDRBlockObject(JSXDRState *xdr, JSObject **objp);
|
|
444
|
+
|
|
445
|
+
struct JSSharpObjectMap {
|
|
446
|
+
jsrefcount depth;
|
|
447
|
+
jsatomid sharpgen;
|
|
448
|
+
JSHashTable *table;
|
|
449
|
+
};
|
|
450
|
+
|
|
451
|
+
#define SHARP_BIT ((jsatomid) 1)
|
|
452
|
+
#define BUSY_BIT ((jsatomid) 2)
|
|
453
|
+
#define SHARP_ID_SHIFT 2
|
|
454
|
+
#define IS_SHARP(he) (JS_PTR_TO_UINT32((he)->value) & SHARP_BIT)
|
|
455
|
+
#define MAKE_SHARP(he) ((he)->value = JS_UINT32_TO_PTR(JS_PTR_TO_UINT32((he)->value)|SHARP_BIT))
|
|
456
|
+
#define IS_BUSY(he) (JS_PTR_TO_UINT32((he)->value) & BUSY_BIT)
|
|
457
|
+
#define MAKE_BUSY(he) ((he)->value = JS_UINT32_TO_PTR(JS_PTR_TO_UINT32((he)->value)|BUSY_BIT))
|
|
458
|
+
#define CLEAR_BUSY(he) ((he)->value = JS_UINT32_TO_PTR(JS_PTR_TO_UINT32((he)->value)&~BUSY_BIT))
|
|
459
|
+
|
|
460
|
+
extern JSHashEntry *
|
|
461
|
+
js_EnterSharpObject(JSContext *cx, JSObject *obj, JSIdArray **idap,
|
|
462
|
+
jschar **sp);
|
|
463
|
+
|
|
464
|
+
extern void
|
|
465
|
+
js_LeaveSharpObject(JSContext *cx, JSIdArray **idap);
|
|
466
|
+
|
|
467
|
+
/*
|
|
468
|
+
* Mark objects stored in map if GC happens between js_EnterSharpObject
|
|
469
|
+
* and js_LeaveSharpObject. GC calls this when map->depth > 0.
|
|
470
|
+
*/
|
|
471
|
+
extern void
|
|
472
|
+
js_TraceSharpMap(JSTracer *trc, JSSharpObjectMap *map);
|
|
473
|
+
|
|
474
|
+
extern JSBool
|
|
475
|
+
js_HasOwnPropertyHelper(JSContext *cx, JSLookupPropOp lookup, uintN argc,
|
|
476
|
+
jsval *vp);
|
|
477
|
+
|
|
478
|
+
extern JSBool
|
|
479
|
+
js_HasOwnProperty(JSContext *cx, JSLookupPropOp lookup, JSObject *obj, jsid id,
|
|
480
|
+
jsval *vp);
|
|
481
|
+
|
|
482
|
+
extern JSBool
|
|
483
|
+
js_PropertyIsEnumerable(JSContext *cx, JSObject *obj, jsid id, jsval *vp);
|
|
484
|
+
|
|
485
|
+
extern JSObject *
|
|
486
|
+
js_InitEval(JSContext *cx, JSObject *obj);
|
|
487
|
+
|
|
488
|
+
extern JSObject *
|
|
489
|
+
js_InitObjectClass(JSContext *cx, JSObject *obj);
|
|
490
|
+
|
|
491
|
+
extern JSObject *
|
|
492
|
+
js_InitClass(JSContext *cx, JSObject *obj, JSObject *parent_proto,
|
|
493
|
+
JSClass *clasp, JSNative constructor, uintN nargs,
|
|
494
|
+
JSPropertySpec *ps, JSFunctionSpec *fs,
|
|
495
|
+
JSPropertySpec *static_ps, JSFunctionSpec *static_fs);
|
|
496
|
+
|
|
497
|
+
/*
|
|
498
|
+
* Select Object.prototype method names shared between jsapi.cpp and jsobj.cpp.
|
|
499
|
+
*/
|
|
500
|
+
extern const char js_watch_str[];
|
|
501
|
+
extern const char js_unwatch_str[];
|
|
502
|
+
extern const char js_hasOwnProperty_str[];
|
|
503
|
+
extern const char js_isPrototypeOf_str[];
|
|
504
|
+
extern const char js_propertyIsEnumerable_str[];
|
|
505
|
+
extern const char js_defineGetter_str[];
|
|
506
|
+
extern const char js_defineSetter_str[];
|
|
507
|
+
extern const char js_lookupGetter_str[];
|
|
508
|
+
extern const char js_lookupSetter_str[];
|
|
509
|
+
|
|
510
|
+
extern JSBool
|
|
511
|
+
js_GetClassId(JSContext *cx, JSClass *clasp, jsid *idp);
|
|
512
|
+
|
|
513
|
+
extern JSObject *
|
|
514
|
+
js_NewObject(JSContext *cx, JSClass *clasp, JSObject *proto, JSObject *parent,
|
|
515
|
+
uintN objectSize);
|
|
516
|
+
|
|
517
|
+
/*
|
|
518
|
+
* See jsapi.h, JS_NewObjectWithGivenProto.
|
|
519
|
+
*
|
|
520
|
+
* objectSize is either the explicit size for the allocated object or 0
|
|
521
|
+
* indicating to use the default size based on object's class.
|
|
522
|
+
*/
|
|
523
|
+
extern JSObject *
|
|
524
|
+
js_NewObjectWithGivenProto(JSContext *cx, JSClass *clasp, JSObject *proto,
|
|
525
|
+
JSObject *parent, uintN objectSize);
|
|
526
|
+
|
|
527
|
+
/*
|
|
528
|
+
* Allocate a new native object and initialize all fslots with JSVAL_VOID
|
|
529
|
+
* starting with the specified slot. The parent slot is set to the value of
|
|
530
|
+
* proto's parent slot.
|
|
531
|
+
*
|
|
532
|
+
* Note that this is the correct global object for native class instances, but
|
|
533
|
+
* not for user-defined functions called as constructors. Functions used as
|
|
534
|
+
* constructors must create instances parented by the parent of the function
|
|
535
|
+
* object, not by the parent of its .prototype object value.
|
|
536
|
+
*/
|
|
537
|
+
extern JSObject*
|
|
538
|
+
js_NewNativeObject(JSContext *cx, JSClass *clasp, JSObject *proto, uint32 slot);
|
|
539
|
+
|
|
540
|
+
/*
|
|
541
|
+
* Fast access to immutable standard objects (constructors and prototypes).
|
|
542
|
+
*/
|
|
543
|
+
extern JSBool
|
|
544
|
+
js_GetClassObject(JSContext *cx, JSObject *obj, JSProtoKey key,
|
|
545
|
+
JSObject **objp);
|
|
546
|
+
|
|
547
|
+
extern JSBool
|
|
548
|
+
js_SetClassObject(JSContext *cx, JSObject *obj, JSProtoKey key, JSObject *cobj);
|
|
549
|
+
|
|
550
|
+
extern JSBool
|
|
551
|
+
js_FindClassObject(JSContext *cx, JSObject *start, jsid id, jsval *vp);
|
|
552
|
+
|
|
553
|
+
extern JSObject *
|
|
554
|
+
js_ConstructObject(JSContext *cx, JSClass *clasp, JSObject *proto,
|
|
555
|
+
JSObject *parent, uintN argc, jsval *argv);
|
|
556
|
+
|
|
557
|
+
extern void
|
|
558
|
+
js_FinalizeObject(JSContext *cx, JSObject *obj);
|
|
559
|
+
|
|
560
|
+
extern JSBool
|
|
561
|
+
js_AllocSlot(JSContext *cx, JSObject *obj, uint32 *slotp);
|
|
562
|
+
|
|
563
|
+
extern void
|
|
564
|
+
js_FreeSlot(JSContext *cx, JSObject *obj, uint32 slot);
|
|
565
|
+
|
|
566
|
+
/* JSVAL_INT_MAX as a string */
|
|
567
|
+
#define JSVAL_INT_MAX_STRING "1073741823"
|
|
568
|
+
|
|
569
|
+
/*
|
|
570
|
+
* Convert string indexes that convert to int jsvals as ints to save memory.
|
|
571
|
+
* Care must be taken to use this macro every time a property name is used, or
|
|
572
|
+
* else double-sets, incorrect property cache misses, or other mistakes could
|
|
573
|
+
* occur.
|
|
574
|
+
*/
|
|
575
|
+
#define CHECK_FOR_STRING_INDEX(id) \
|
|
576
|
+
JS_BEGIN_MACRO \
|
|
577
|
+
if (JSID_IS_ATOM(id)) { \
|
|
578
|
+
JSAtom *atom_ = JSID_TO_ATOM(id); \
|
|
579
|
+
JSString *str_ = ATOM_TO_STRING(atom_); \
|
|
580
|
+
const jschar *s_ = JSFLATSTR_CHARS(str_); \
|
|
581
|
+
JSBool negative_ = (*s_ == '-'); \
|
|
582
|
+
if (negative_) s_++; \
|
|
583
|
+
if (JS7_ISDEC(*s_)) { \
|
|
584
|
+
size_t n_ = JSFLATSTR_LENGTH(str_) - negative_; \
|
|
585
|
+
if (n_ <= sizeof(JSVAL_INT_MAX_STRING) - 1) \
|
|
586
|
+
id = js_CheckForStringIndex(id, s_, s_ + n_, negative_); \
|
|
587
|
+
} \
|
|
588
|
+
} \
|
|
589
|
+
JS_END_MACRO
|
|
590
|
+
|
|
591
|
+
extern jsid
|
|
592
|
+
js_CheckForStringIndex(jsid id, const jschar *cp, const jschar *end,
|
|
593
|
+
JSBool negative);
|
|
594
|
+
|
|
595
|
+
/*
|
|
596
|
+
* js_PurgeScopeChain does nothing if obj is not itself a prototype or parent
|
|
597
|
+
* scope, else it reshapes the scope and prototype chains it links. It calls
|
|
598
|
+
* js_PurgeScopeChainHelper, which asserts that obj is flagged as a delegate
|
|
599
|
+
* (i.e., obj has ever been on a prototype or parent chain).
|
|
600
|
+
*/
|
|
601
|
+
extern void
|
|
602
|
+
js_PurgeScopeChainHelper(JSContext *cx, JSObject *obj, jsid id);
|
|
603
|
+
|
|
604
|
+
#ifdef __cplusplus /* Aargh, libgjs, bug 492720. */
|
|
605
|
+
static JS_INLINE void
|
|
606
|
+
js_PurgeScopeChain(JSContext *cx, JSObject *obj, jsid id)
|
|
607
|
+
{
|
|
608
|
+
if (OBJ_IS_DELEGATE(cx, obj))
|
|
609
|
+
js_PurgeScopeChainHelper(cx, obj, id);
|
|
610
|
+
}
|
|
611
|
+
#endif
|
|
612
|
+
|
|
613
|
+
/*
|
|
614
|
+
* Find or create a property named by id in obj's scope, with the given getter
|
|
615
|
+
* and setter, slot, attributes, and other members.
|
|
616
|
+
*/
|
|
617
|
+
extern JSScopeProperty *
|
|
618
|
+
js_AddNativeProperty(JSContext *cx, JSObject *obj, jsid id,
|
|
619
|
+
JSPropertyOp getter, JSPropertyOp setter, uint32 slot,
|
|
620
|
+
uintN attrs, uintN flags, intN shortid);
|
|
621
|
+
|
|
622
|
+
/*
|
|
623
|
+
* Change sprop to have the given attrs, getter, and setter in scope, morphing
|
|
624
|
+
* it into a potentially new JSScopeProperty. Return a pointer to the changed
|
|
625
|
+
* or identical property.
|
|
626
|
+
*/
|
|
627
|
+
extern JSScopeProperty *
|
|
628
|
+
js_ChangeNativePropertyAttrs(JSContext *cx, JSObject *obj,
|
|
629
|
+
JSScopeProperty *sprop, uintN attrs, uintN mask,
|
|
630
|
+
JSPropertyOp getter, JSPropertyOp setter);
|
|
631
|
+
|
|
632
|
+
/*
|
|
633
|
+
* On error, return false. On success, if propp is non-null, return true with
|
|
634
|
+
* obj locked and with a held property in *propp; if propp is null, return true
|
|
635
|
+
* but release obj's lock first. Therefore all callers who pass non-null propp
|
|
636
|
+
* result parameters must later call OBJ_DROP_PROPERTY(cx, obj, *propp) both to
|
|
637
|
+
* drop the held property, and to release the lock on obj.
|
|
638
|
+
*/
|
|
639
|
+
extern JSBool
|
|
640
|
+
js_DefineProperty(JSContext *cx, JSObject *obj, jsid id, jsval value,
|
|
641
|
+
JSPropertyOp getter, JSPropertyOp setter, uintN attrs,
|
|
642
|
+
JSProperty **propp);
|
|
643
|
+
|
|
644
|
+
#ifdef __cplusplus /* FIXME: bug 442399 removes this LiveConnect requirement. */
|
|
645
|
+
|
|
646
|
+
/*
|
|
647
|
+
* Flags for the defineHow parameter of js_DefineNativeProperty.
|
|
648
|
+
*/
|
|
649
|
+
const uintN JSDNP_CACHE_RESULT = 1; /* an interpreter call from JSOP_INITPROP */
|
|
650
|
+
const uintN JSDNP_DONT_PURGE = 2; /* suppress js_PurgeScopeChain */
|
|
651
|
+
|
|
652
|
+
extern JSBool
|
|
653
|
+
js_DefineNativeProperty(JSContext *cx, JSObject *obj, jsid id, jsval value,
|
|
654
|
+
JSPropertyOp getter, JSPropertyOp setter, uintN attrs,
|
|
655
|
+
uintN flags, intN shortid, JSProperty **propp,
|
|
656
|
+
uintN defineHow = 0);
|
|
657
|
+
#endif
|
|
658
|
+
|
|
659
|
+
/*
|
|
660
|
+
* Unlike js_DefineProperty, propp must be non-null. On success, and if id was
|
|
661
|
+
* found, return true with *objp non-null and locked, and with a held property
|
|
662
|
+
* stored in *propp. If successful but id was not found, return true with both
|
|
663
|
+
* *objp and *propp null. Therefore all callers who receive a non-null *propp
|
|
664
|
+
* must later call OBJ_DROP_PROPERTY(cx, *objp, *propp).
|
|
665
|
+
*/
|
|
666
|
+
extern JS_FRIEND_API(JSBool)
|
|
667
|
+
js_LookupProperty(JSContext *cx, JSObject *obj, jsid id, JSObject **objp,
|
|
668
|
+
JSProperty **propp);
|
|
669
|
+
|
|
670
|
+
/*
|
|
671
|
+
* Specialized subroutine that allows caller to preset JSRESOLVE_* flags and
|
|
672
|
+
* returns the index along the prototype chain in which *propp was found, or
|
|
673
|
+
* the last index if not found, or -1 on error.
|
|
674
|
+
*/
|
|
675
|
+
extern int
|
|
676
|
+
js_LookupPropertyWithFlags(JSContext *cx, JSObject *obj, jsid id, uintN flags,
|
|
677
|
+
JSObject **objp, JSProperty **propp);
|
|
678
|
+
|
|
679
|
+
/*
|
|
680
|
+
* If cacheResult is false, return JS_NO_PROP_CACHE_FILL on success.
|
|
681
|
+
*/
|
|
682
|
+
extern JSPropCacheEntry *
|
|
683
|
+
js_FindPropertyHelper(JSContext *cx, jsid id, JSBool cacheResult,
|
|
684
|
+
JSObject **objp, JSObject **pobjp, JSProperty **propp);
|
|
685
|
+
|
|
686
|
+
/*
|
|
687
|
+
* Return the index along the scope chain in which id was found, or the last
|
|
688
|
+
* index if not found, or -1 on error.
|
|
689
|
+
*/
|
|
690
|
+
extern JS_FRIEND_API(JSBool)
|
|
691
|
+
js_FindProperty(JSContext *cx, jsid id, JSObject **objp, JSObject **pobjp,
|
|
692
|
+
JSProperty **propp);
|
|
693
|
+
|
|
694
|
+
extern JS_REQUIRES_STACK JSObject *
|
|
695
|
+
js_FindIdentifierBase(JSContext *cx, JSObject *scopeChain, jsid id);
|
|
696
|
+
|
|
697
|
+
extern JSObject *
|
|
698
|
+
js_FindVariableScope(JSContext *cx, JSFunction **funp);
|
|
699
|
+
|
|
700
|
+
/*
|
|
701
|
+
* NB: js_NativeGet and js_NativeSet are called with the scope containing sprop
|
|
702
|
+
* (pobj's scope for Get, obj's for Set) locked, and on successful return, that
|
|
703
|
+
* scope is again locked. But on failure, both functions return false with the
|
|
704
|
+
* scope containing sprop unlocked.
|
|
705
|
+
*/
|
|
706
|
+
extern JSBool
|
|
707
|
+
js_NativeGet(JSContext *cx, JSObject *obj, JSObject *pobj,
|
|
708
|
+
JSScopeProperty *sprop, jsval *vp);
|
|
709
|
+
|
|
710
|
+
extern JSBool
|
|
711
|
+
js_NativeSet(JSContext *cx, JSObject *obj, JSScopeProperty *sprop, jsval *vp);
|
|
712
|
+
|
|
713
|
+
extern JSBool
|
|
714
|
+
js_GetPropertyHelper(JSContext *cx, JSObject *obj, jsid id, JSBool cacheResult,
|
|
715
|
+
jsval *vp);
|
|
716
|
+
|
|
717
|
+
extern JSBool
|
|
718
|
+
js_GetProperty(JSContext *cx, JSObject *obj, jsid id, jsval *vp);
|
|
719
|
+
|
|
720
|
+
extern JSBool
|
|
721
|
+
js_GetMethod(JSContext *cx, JSObject *obj, jsid id, JSBool cacheResult,
|
|
722
|
+
jsval *vp);
|
|
723
|
+
|
|
724
|
+
/*
|
|
725
|
+
* Check whether it is OK to assign an undeclared property of the global
|
|
726
|
+
* object at the current script PC.
|
|
727
|
+
*/
|
|
728
|
+
extern JS_FRIEND_API(JSBool)
|
|
729
|
+
js_CheckUndeclaredVarAssignment(JSContext *cx);
|
|
730
|
+
|
|
731
|
+
extern JSBool
|
|
732
|
+
js_SetPropertyHelper(JSContext *cx, JSObject *obj, jsid id, JSBool cacheResult,
|
|
733
|
+
jsval *vp);
|
|
734
|
+
|
|
735
|
+
extern JSBool
|
|
736
|
+
js_SetProperty(JSContext *cx, JSObject *obj, jsid id, jsval *vp);
|
|
737
|
+
|
|
738
|
+
extern JSBool
|
|
739
|
+
js_GetAttributes(JSContext *cx, JSObject *obj, jsid id, JSProperty *prop,
|
|
740
|
+
uintN *attrsp);
|
|
741
|
+
|
|
742
|
+
extern JSBool
|
|
743
|
+
js_SetAttributes(JSContext *cx, JSObject *obj, jsid id, JSProperty *prop,
|
|
744
|
+
uintN *attrsp);
|
|
745
|
+
|
|
746
|
+
extern JSBool
|
|
747
|
+
js_DeleteProperty(JSContext *cx, JSObject *obj, jsid id, jsval *rval);
|
|
748
|
+
|
|
749
|
+
extern JSBool
|
|
750
|
+
js_DefaultValue(JSContext *cx, JSObject *obj, JSType hint, jsval *vp);
|
|
751
|
+
|
|
752
|
+
extern JSBool
|
|
753
|
+
js_Enumerate(JSContext *cx, JSObject *obj, JSIterateOp enum_op,
|
|
754
|
+
jsval *statep, jsid *idp);
|
|
755
|
+
|
|
756
|
+
extern void
|
|
757
|
+
js_TraceNativeEnumerators(JSTracer *trc);
|
|
758
|
+
|
|
759
|
+
extern JSBool
|
|
760
|
+
js_CheckAccess(JSContext *cx, JSObject *obj, jsid id, JSAccessMode mode,
|
|
761
|
+
jsval *vp, uintN *attrsp);
|
|
762
|
+
|
|
763
|
+
extern JSBool
|
|
764
|
+
js_Call(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
|
|
765
|
+
|
|
766
|
+
extern JSBool
|
|
767
|
+
js_Construct(JSContext *cx, JSObject *obj, uintN argc, jsval *argv,
|
|
768
|
+
jsval *rval);
|
|
769
|
+
|
|
770
|
+
extern JSBool
|
|
771
|
+
js_HasInstance(JSContext *cx, JSObject *obj, jsval v, JSBool *bp);
|
|
772
|
+
|
|
773
|
+
extern JSBool
|
|
774
|
+
js_SetProtoOrParent(JSContext *cx, JSObject *obj, uint32 slot, JSObject *pobj,
|
|
775
|
+
JSBool checkForCycles);
|
|
776
|
+
|
|
777
|
+
extern JSBool
|
|
778
|
+
js_IsDelegate(JSContext *cx, JSObject *obj, jsval v, JSBool *bp);
|
|
779
|
+
|
|
780
|
+
extern JSBool
|
|
781
|
+
js_GetClassPrototype(JSContext *cx, JSObject *scope, jsid id,
|
|
782
|
+
JSObject **protop);
|
|
783
|
+
|
|
784
|
+
extern JSBool
|
|
785
|
+
js_SetClassPrototype(JSContext *cx, JSObject *ctor, JSObject *proto,
|
|
786
|
+
uintN attrs);
|
|
787
|
+
|
|
788
|
+
/*
|
|
789
|
+
* Wrap boolean, number or string as Boolean, Number or String object.
|
|
790
|
+
* *vp must not be an object, null or undefined.
|
|
791
|
+
*/
|
|
792
|
+
extern JSBool
|
|
793
|
+
js_PrimitiveToObject(JSContext *cx, jsval *vp);
|
|
794
|
+
|
|
795
|
+
extern JSBool
|
|
796
|
+
js_ValueToObject(JSContext *cx, jsval v, JSObject **objp);
|
|
797
|
+
|
|
798
|
+
extern JSObject *
|
|
799
|
+
js_ValueToNonNullObject(JSContext *cx, jsval v);
|
|
800
|
+
|
|
801
|
+
extern JSBool
|
|
802
|
+
js_TryValueOf(JSContext *cx, JSObject *obj, JSType type, jsval *rval);
|
|
803
|
+
|
|
804
|
+
extern JSBool
|
|
805
|
+
js_TryMethod(JSContext *cx, JSObject *obj, JSAtom *atom,
|
|
806
|
+
uintN argc, jsval *argv, jsval *rval);
|
|
807
|
+
|
|
808
|
+
extern JSBool
|
|
809
|
+
js_XDRObject(JSXDRState *xdr, JSObject **objp);
|
|
810
|
+
|
|
811
|
+
extern void
|
|
812
|
+
js_TraceObject(JSTracer *trc, JSObject *obj);
|
|
813
|
+
|
|
814
|
+
extern void
|
|
815
|
+
js_PrintObjectSlotName(JSTracer *trc, char *buf, size_t bufsize);
|
|
816
|
+
|
|
817
|
+
extern void
|
|
818
|
+
js_Clear(JSContext *cx, JSObject *obj);
|
|
819
|
+
|
|
820
|
+
extern jsval
|
|
821
|
+
js_GetRequiredSlot(JSContext *cx, JSObject *obj, uint32 slot);
|
|
822
|
+
|
|
823
|
+
extern JSBool
|
|
824
|
+
js_SetRequiredSlot(JSContext *cx, JSObject *obj, uint32 slot, jsval v);
|
|
825
|
+
|
|
826
|
+
/*
|
|
827
|
+
* Precondition: obj must be locked.
|
|
828
|
+
*/
|
|
829
|
+
extern JSBool
|
|
830
|
+
js_ReallocSlots(JSContext *cx, JSObject *obj, uint32 nslots,
|
|
831
|
+
JSBool exactAllocation);
|
|
832
|
+
|
|
833
|
+
extern JSObject *
|
|
834
|
+
js_CheckScopeChainValidity(JSContext *cx, JSObject *scopeobj, const char *caller);
|
|
835
|
+
|
|
836
|
+
extern JSBool
|
|
837
|
+
js_CheckPrincipalsAccess(JSContext *cx, JSObject *scopeobj,
|
|
838
|
+
JSPrincipals *principals, JSAtom *caller);
|
|
839
|
+
|
|
840
|
+
/* Infallible -- returns its argument if there is no wrapped object. */
|
|
841
|
+
extern JSObject *
|
|
842
|
+
js_GetWrappedObject(JSContext *cx, JSObject *obj);
|
|
843
|
+
|
|
844
|
+
/* NB: Infallible. */
|
|
845
|
+
extern const char *
|
|
846
|
+
js_ComputeFilename(JSContext *cx, JSStackFrame *caller,
|
|
847
|
+
JSPrincipals *principals, uintN *linenop);
|
|
848
|
+
|
|
849
|
+
/* Infallible, therefore cx is last parameter instead of first. */
|
|
850
|
+
extern JSBool
|
|
851
|
+
js_IsCallable(JSObject *obj, JSContext *cx);
|
|
852
|
+
|
|
853
|
+
void
|
|
854
|
+
js_ReportGetterOnlyAssignment(JSContext *cx);
|
|
855
|
+
|
|
856
|
+
extern JS_FRIEND_API(JSBool)
|
|
857
|
+
js_GetterOnlyPropertyStub(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
|
|
858
|
+
|
|
859
|
+
#ifdef DEBUG
|
|
860
|
+
JS_FRIEND_API(void) js_DumpChars(const jschar *s, size_t n);
|
|
861
|
+
JS_FRIEND_API(void) js_DumpString(JSString *str);
|
|
862
|
+
JS_FRIEND_API(void) js_DumpAtom(JSAtom *atom);
|
|
863
|
+
JS_FRIEND_API(void) js_DumpValue(jsval val);
|
|
864
|
+
JS_FRIEND_API(void) js_DumpId(jsid id);
|
|
865
|
+
JS_FRIEND_API(void) js_DumpObject(JSObject *obj);
|
|
866
|
+
#endif
|
|
867
|
+
|
|
868
|
+
JS_END_EXTERN_C
|
|
869
|
+
|
|
870
|
+
#endif /* jsobj_h___ */
|