shaver%mozilla.org
24ccdbda1f
71107: make inner-peeking properly set HEAVYWEIGHT for all outer functions (r=jband,sr=brendan)
2001-03-07 03:14:25 +00:00
pschwartau%netscape.com
3806f206fa
Initial add. Regression test for bug 71107.
2001-03-07 01:30:15 +00:00
matthias%sorted.org
712e352a43
replicated SpiderMonkey fix for bug 67773
2001-03-06 13:57:01 +00:00
brendan%mozilla.org
a14dfbe234
I'm a Linux loser, warnings don't affect me.
2001-03-06 02:45:35 +00:00
brendan%mozilla.org
dfe2d8965b
Death to tabs\!
2001-03-06 02:05:03 +00:00
brendan%mozilla.org
69ab37f337
bugs 31003 and (mostly) 68045, r=rogerl, sr=shaver&hyatt
...
- Fix bug where script jssrcnote vector terminator was not XDRed.
- Ensure that memory is cleared by serializing zero padding bytes as needed
under JS_XDRBytes and JS_XDRString.
- Fix JS_XDRValue to handle undefined and null JS types properly (bug 31003).
Also make it cast from jsint to uint32 and back carefully, so as to work
with negative numbers even on targets where jsval is a signed 64 bit type.
- Add JS_XDRScript public API.
- Optimize the per-JSXDRState class registry so it uses a JSDHashTable upon
searching for a class-id by name in an overpopulated (for linear search)
registry table.
- Clean up API nits such as JS_XDRNewBase => JS_XDRInitBase, with parameter
list rotation to put cx last (JS_XDRInitBase is an infallible init helper,
not an error-reporting, cx-comes-first, API entry point).
- Fix some XXX comments, unneeded masks, other nits.
- Make sure all JS XDR API functions start with JS_XDR.
2001-03-06 01:56:30 +00:00
beard%netscape.com
78cb105183
Bug #70883 , leaks in LiveConnect. sr/r=brendan
2001-03-05 15:41:12 +00:00
matthias%sorted.org
8d348ad77e
* made shell.Global a subclass of ImporterTopLevel
...
* fixed ImporterTopLevel constructor - it now calls
cx.initStandardObjects before defining any functions. The old
constructor is still around for backwards compatibility.
2001-03-05 08:46:10 +00:00
beard%netscape.com
88aa0bfd2c
fix for bug #69210 , r/sr=brendan
2001-03-04 21:26:19 +00:00
beard%netscape.com
5f32ec9e35
bug #70240 , sr=beard, r=brendan
2001-03-04 21:20:31 +00:00
beard%netscape.com
bb7384e98f
[not part of build] fix memory leak of full_classpath.
2001-03-04 19:23:51 +00:00
beard%netscape.com
99009db752
[not part of build] use correct calling conventions when OJI is #defined.
2001-03-03 19:30:17 +00:00
beard%netscape.com
7fa29ffe23
Automatically load "xpcshell.js" if available. sr=jband
2001-03-03 01:01:20 +00:00
jband%netscape.com
81c1f91f67
[not part of build] adding placeholders for new files
2001-03-02 05:25:04 +00:00
rogerl%netscape.com
e93b9c7b20
Fix #61751 . sr=brendan,r=mang. #define changes to fix floating point bug
...
in JavaScript on NetBSD/arm32.
2001-03-02 00:20:11 +00:00
rogerl%netscape.com
0f3fdaea1e
Fix bug #67773 . sr=brendan, r=rginda. Fixes doubly nested quantifiers in
...
reg.exps when deeper sub-expression has to backup without failing. Some
other clean-up changes, too.
2001-03-02 00:17:48 +00:00
nboyd%atg.com
534fc4e412
More changes from Igor.
2001-03-01 19:28:37 +00:00
matthias%sorted.org
ebbd7aaa6c
fixed two instances where prefix match would return undefined instead of null
2001-03-01 16:52:23 +00:00
matthias%sorted.org
6413b694ba
getInstance now uses ScriptableObject.getProperty instead of
...
Scriptable.get. This way Global can (again) be used in prototype
chain.
2001-03-01 13:33:55 +00:00
pschwartau%netscape.com
687b187d0b
Correcting an error in the testcase -
2001-03-01 01:06:48 +00:00
brendan%mozilla.org
60a74f6168
Fix JS_ARENA_GROW_CAST so it doesn't round up both size and incr, which overestimates and wastes space (44009, r=shaver, sr=jband).
2001-02-28 00:27:10 +00:00
brendan%mozilla.org
e5648f61de
Fix 'import *;' (70308, r=shaver, sr=jband).
2001-02-28 00:17:19 +00:00
dprice%netscape.com
199c935b04
# 65845 sr=waterson, new order files will greatly reduce the number of link warnings.
2001-02-27 04:38:19 +00:00
pschwartau%netscape.com
32ca03bbbc
Initial add. Regression test for bug 44009.
2001-02-27 03:41:13 +00:00
nboyd%atg.com
a91023590b
Commit new scheme for builtin objects, courtesy of
...
Igor Bukanov <igor@icesoft.no>. This new scheme is
faster and consumes less memory.
2001-02-26 16:16:46 +00:00
nboyd%atg.com
3f5e828b80
Change ClassOutput to take a top-level boolean parameter.
2001-02-26 15:32:15 +00:00
nboyd%atg.com
b02120e058
Add top-level boolean parameter so ClassOutput implementors can determine
...
which class to load to execute a script.
2001-02-26 15:28:17 +00:00
pschwartau%netscape.com
d3de39854b
Added Stephen Ostermiller's pattern-match from bug 69989 to this test -
2001-02-24 03:23:27 +00:00
brendan%mozilla.org
55d5713602
Don't deprecate __proto__, there ain't no forward-compatible alternative (68401, r=timeless, sr=shaver).
2001-02-24 03:07:58 +00:00
brendan%mozilla.org
ee954accd5
- Shaver hacked this fix with advice from me, and I carried it to check-in. We now avoid a heavyweight outer function when the inner one is defined at top-level or in an expression (is not a JSOP_CLOSURE, IOW), and it doesn't refer to any non-local names. See bug 65308 for details on the win. (r=rogerl, sr=brendan)
...
- Fix scope chain for nested functions at top-level (JSOP_DEFFUN), in a part of another statement (JSOP_CLOSURE), and unnamed in an expression (JSOP_ANONFUNOBJ) to match ECMA-262 13.2. My bad: fp->varobj was used up till now, instead of fp->scopeChain; we still *bind* the name of a statement-level (top or not) nested function in fp->varobj. This fixes bug 69559. (r=rogerl, sr=jband)
- Add an Intern command to the shell, for GC vs. intern'ed atom testing.
2001-02-24 03:00:56 +00:00
pschwartau%netscape.com
484642e6df
Initial add. Regression test for bug 69607.
2001-02-23 07:35:47 +00:00
nboyd%atg.com
446ea9e8da
Real fix for last problem.
2001-02-22 14:45:10 +00:00
disttsc%bart.nl
a6f2f5861a
Mass REQUIRES update to synch up with string lib and xul changes in an attempt to fix senna bustage. r=jst, sr=cls
2001-02-22 09:35:51 +00:00
brendan%mozilla.org
147be84ecc
Fix duplicate parsenode recycle in constant-folded if/else or ?: (69607, r=shaver, sr=jband).
2001-02-22 07:30:57 +00:00
brendan%mozilla.org
3d3ee5cbd3
Remove unused code (sr=jband, r=mozbot).
2001-02-21 10:49:35 +00:00
nboyd%atg.com
25a2852250
Subject:
...
Rhino Context.setTargetClassFileName() null pointer exception
Date:
Tue, 20 Feb 2001 15:28:20 -0800
From:
"Ryan Manwiller" <rdm@europa.com>
Organization:
Another Netscape Collabra Server User
Newsgroups:
netscape.public.mozilla.jseng
I'm setting the file name to compile to a file. However, on subsequent
compiles, I don't want to compile to a file, so I tried
setTargetClassFileName(null). This causes a NullPpinterException in
OptClassNameHelper.setTargetClassFileName(OptClassNameHelper.java:76)
It seems that Context.setTargetClassFileName() should check for null.
Thanks
2001-02-21 02:08:05 +00:00
pschwartau%netscape.com
f9086bf830
Minor whitespace deletion -
2001-02-21 00:58:41 +00:00
pschwartau%netscape.com
5331662996
Minor change to comment -
2001-02-21 00:39:46 +00:00
pschwartau%netscape.com
538ea61c08
Improving error message -
2001-02-21 00:27:13 +00:00
jband%netscape.com
a96a22f464
Avoid use of dead JSContext in dtor. bug 69463. Thanks to Waleri Todorov <waleri@gti.bg> for pointing out this bug. r=shaver sr=brendan
2001-02-21 00:01:30 +00:00
pschwartau%netscape.com
f070a37023
Revising error in test. See bug 69441, where this was pointed out -
2001-02-20 22:11:44 +00:00
jband%netscape.com
d242dcca69
bug 66610 - add xpconnect support for DOMStrings. r=jst sr=brendan
2001-02-20 08:09:19 +00:00
brendan%mozilla.org
bcb7e8d5fd
Don't flush cached properties one-by-one if GC'ing, because the GC flushes the whole thing (68735, r=jst, sr=jband).
2001-02-20 05:01:14 +00:00
brendan%mozilla.org
5f946f1796
Fix constant folder to recycle moved node, not whole tree, when simplifying 'true ? foo() : bar()' into 'foo()' (69345, r=shaver, sr=jband).
2001-02-20 01:25:39 +00:00
brendan%mozilla.org
da9be4b8bb
Fix related eval and setTimeout regressions caused by bug 68498's patch (69165&69175, r=jband, sr=shaver).
2001-02-19 00:31:20 +00:00
shaver%mozilla.org
9d74dff12a
Fold constants correctly when emitting as we compile (TCF_COMPILING).
...
(#69304 , r=jband, sr=brendan)
2001-02-18 20:58:08 +00:00
pschwartau%netscape.com
ed3d3552d7
Regression test for bug 68498. Derived from Brendan's attachment to the bug -
2001-02-18 03:31:17 +00:00
jband%netscape.com
51e076e20b
rest of the fix for bug 68971 - can't share a kungfoodeathgrip. sr=brendan r=shaver
2001-02-16 02:21:22 +00:00
brendan%mozilla.org
b8a3d1e3ef
Don't crash on a newborn object (68971, r=jband, sr=shaver).
2001-02-16 02:09:42 +00:00
brendan%mozilla.org
e0c2c3974f
The rest of the fix for bug 68498, see the extensive comments in that bug (r=jband, sr=shaver).
2001-02-16 02:04:12 +00:00