Commit Graph

6651 Commits

Author SHA1 Message Date
mrbkap%gmail.com
34922691ff bug 287630: When using an empty capturing regexp, String.prototype.split() appends an extra element to the result. r+a=brendan 2005-06-17 16:25:51 +00:00
brendan%mozilla.org
6847e0863b js/src part of 2nd patch for 292903, r+sr=bryner/jst. 2005-06-16 21:43:15 +00:00
brendan%mozilla.org
afe2ea2ef9 Fix regression from 292903's first patch, which results in JS_DEFAULT_XML_NAMESPACE_ID being enumerated! Thanks to bc for noticing. 2005-06-16 20:27:11 +00:00
brendan%mozilla.org
fb36f6a978 Add JS_EnumerateResolvedStandardClasses, and fix a few lazy-standard-class-init glitches hindering it (292903, r=shaver, a=me). 2005-06-16 04:24:03 +00:00
brendan%mozilla.org
c94de75fa6 Fix dumb copy-paste bug jst pointed out, whose symptom bz reported (r+sr=jst, a=me). 2005-06-15 16:42:31 +00:00
nboyd%atg.com
82274cd041 Add Magoo Software. 2005-06-15 16:12:35 +00:00
dbaron%dbaron.org
ab8827c68d Fix releasing of nsISupportsWeakReference wrapped JS objects so it doesn't crash when we do multiple iterations of JS GC. b=292027 r=jst sr=brendan a=brendan 2005-06-15 00:23:32 +00:00
dbaron%dbaron.org
b07af11b3c I only want part of DEBUG_xpc_hacker; fix spelling. b=292027 r=jst sr=brendan a=brendan 2005-06-15 00:21:26 +00:00
bob%bclary.com
1dadf9ec31 function local variables should not be enumerable properties of the function object, bug 293782, by Jonathan Watt 2005-06-14 16:49:49 +00:00
brendan%mozilla.org
fef2910df9 Forgot to remove JSPROP_ENUMERATE in one case for bug 293782 (thanks to jwatt for catching this). 2005-06-14 16:20:27 +00:00
brendan%mozilla.org
0efbaf9c4b One more followup fix: __defineProperty__ should probably be global. 2005-06-12 18:45:53 +00:00
brendan%mozilla.org
241e1ec5d6 Followup to last checkin to delete constructor from Activation.prototype. 2005-06-12 18:28:33 +00:00
brendan%mozilla.org
9c322522a7 Mirror fix for bug 290774 from SpiderMonkey to Narcissus. 2005-06-12 16:08:21 +00:00
brendan%mozilla.org
578a39586d Better fix for 296397 (r=shaver, sr=jst). 2005-06-11 01:33:44 +00:00
bob%bclary.com
4bde75c512 remove keyword tests from spidermonkey-n.tests, add options('strict', 'werror') to force exceptions. 2005-06-10 05:22:15 +00:00
brendan%mozilla.org
977bf3bd87 Remove JSPROP_ENUMERATE from function args/vars hidden property attributes (followup for 293782). 2005-06-09 23:45:54 +00:00
brendan%mozilla.org
8f58079aeb Check access when accessing function and regexp __proto__, etc. (296397, r=shaver, a=me). 2005-06-09 01:02:36 +00:00
brendan%mozilla.org
f1cb388901 Followup fix for 255555 (r=mrbkap, a=me). 2005-06-08 18:08:53 +00:00
mrbkap%gmail.com
fdbe109b8c bug 255555: undefined and missing values are passed to Array.sort()'s comparison function. r+a=brendan 2005-06-08 16:38:38 +00:00
bob%bclary.com
8799ec01e3 XML.setNamespace() should affect in-scope namespaces, per brendan. No bug, not part of build. 2005-06-08 05:03:12 +00:00
bob%bclary.com
7fe03798c2 remove extra newline which breaks mklistpage.pl, no bug, not part of build 2005-06-08 04:57:33 +00:00
bob%bclary.com
e3dd16e961 add invalid test e4x/Regress/regress-278112.js to spidermonkey-n.tests, rhino-n.tests 2005-06-08 04:39:06 +00:00
bob%bclary.com
91aa107128 test is testing for a crash. catch exception to prevent erroneous failure, no bug, not part of build. 2005-06-08 03:12:49 +00:00
bob%bclary.com
0a4bbd5c98 rename function to eliminate possible collisions, no bug, not part of build 2005-06-08 03:03:13 +00:00
bob%bclary.com
dae4cdc78f increase global/local ratio to 2.5 to reduce noise, no bug, not part of build 2005-06-08 03:01:30 +00:00
bob%bclary.com
f5bcb45373 e4x 10.2.1.js XML.toXMLString test coverage, bug 297025 2005-06-08 02:54:39 +00:00
bob%bclary.com
b525135e04 e4x 10.1.2.js xmllist.toString test coverage, bug 297024 2005-06-08 02:45:15 +00:00
bob%bclary.com
a3e1f0f920 e4x 10.1.1.js xml.toString test coverage, bug 297018 2005-06-08 02:23:01 +00:00
brendan%mozilla.org
b2dc882824 Fix bugs 296772 and 262948 (r=shaver, sr=jst, a=me). 2005-06-08 02:13:10 +00:00
bob%bclary.com
9f51bec4e3 mklistpage.pl - exclude tests in spidermonkey-n.tests from menu.html, bug 296978 2005-06-08 01:05:34 +00:00
mrbkap%gmail.com
f0f0906148 bug 294195: Remove an old dependence on null-terminated strings in favor of an end-pointer to fix a crash trying to interpret regexp dollar backrefs. r+a=brendan 2005-06-07 22:16:48 +00:00
bob%bclary.com
4d0c2ebdc2 Add newline after modeline, no bug, not part of the build 2005-06-07 19:54:01 +00:00
brendan%mozilla.org
9315b99293 Update comment to track tricky AVL tree reference. 2005-06-07 16:22:58 +00:00
jst%mozilla.jstenback.com
1326123ede Fixing tinderbox orangeness (Thunderbird) and bug 296467. Get the function object off of the stack frame through fp->argv[-2] and not through fp->fun->object as the latter may be null if the function on the frame is a clone and the real function object no longer exists. reviews and approval pending. 2005-06-03 04:16:14 +00:00
jst%mozilla.jstenback.com
579f66758d Fixing bug 294795. Don't leave references from cloned member functions to the scope where xpconnect creates the functions (safe context). r=bzbarsky@mit.edu, sr=brendan@mozilla.org, a=brendan@mozilla.org 2005-06-02 21:33:18 +00:00
shaver%mozilla.org
bfb1d6c0e8 Bug 296006: correctly handle the re-locking of shallow GCThings. r+a=brendan 2005-06-02 12:17:51 +00:00
bzbarsky%mit.edu
3ffbd13c27 Log creation of XPCNativeWrapper and XPCWrappedNative objects if
DEBUG_XPCNativeWrapper is defined.  Bug 295435, r+sr=jst, a=shaver.
2005-06-01 19:26:24 +00:00
timeless%mozdev.org
43e126ba4d Bug 295636 OOM Crash [@ Init]
r=jst sr=jst a=shaver
2005-06-01 18:36:25 +00:00
bzbarsky%mit.edu
0a79630206 Fix toString on the XPCNativeWrapper prototype to return something sane instead
of crashing.  Bug 295430, r+sr=jst, a=shaver
2005-06-01 15:20:29 +00:00
cls%seawood.org
d5865f4067 Use dashes instead of backslashes for program options to avoid msys shell expansion.
Thanks to Howard Chu <hyc@symas.com> for the patch.
Bug #294122 r=cls a=shaver
2005-06-01 14:28:35 +00:00
bzbarsky%mit.edu
3607e6f0ff Separate out deep-ness and auto-unwrapping of native wrappers (base the latter
on whether the wrapper is explicit).  Bug 295782, r+sr+a=brendan
2005-06-01 01:46:01 +00:00
bzbarsky%mit.edu
bbb48ed8cd Don't return XPCNativeWrappers from an nsIXPConnect::WrapNative call. Bug
295152, r+sr=jst, a=brendan
2005-06-01 01:21:23 +00:00
brendan%mozilla.org
f7c32a8fa5 Fix gcPoke management to cope with nesty destroy-context order (296119, r=shaver, a=me). 2005-06-01 01:16:06 +00:00
jst%mozilla.jstenback.com
89ca2a2343 Fixing crash introduced with my earlier changes for bug 294893. Make nw and wn finalizers order independent. r+sr=bzbarsky@mit.edu, a=drivers 2005-05-26 21:35:27 +00:00
jst%mozilla.jstenback.com
0f335ce290 More fixes for bug 294893. When a XPCWrappedNative's scope is cleared, make sure we clear the scope for all of its XPCNativeWrappers as well. r+sr=bzbarsky@mit.edu, a=drivers 2005-05-26 19:30:36 +00:00
bzbarsky%mit.edu
03b49b6c9f Better version of last patch -- don't pin the atoms, and clean up nicely when
they're finalized so as not to crash.  Bug 294893, assumed future r=brendan,
a=drivers
2005-05-26 17:21:29 +00:00
bzbarsky%mit.edu
0944128967 Backing out to fix orange till I can sort it out. 2005-05-26 14:41:34 +00:00
bzbarsky%mit.edu
1a63d106a8 Don't pin object atoms, since those can entrain all sorts of other stuff. Bug
294893 some more, r=brendan, sr=jst, a=brendan
2005-05-26 13:27:57 +00:00
brendan%mozilla.org
71ea03eb0c Fix null deref crash on s.match.apply (295052, r=shaver). 2005-05-25 23:28:00 +00:00
jst%mozilla.jstenback.com
4095b0c95f More fixes for leak bug 294893. Make sure to clear the scope of the native wrapper when a wrapped native's scope is cleared. r+sr=bzbarsky@mit.edu, a=drivers 2005-05-25 03:40:24 +00:00