Subj : Re: Rhino 1.6R2 release candidate available To : netscape.public.mozilla.jseng From : Olinda Spider Date : Sun Aug 28 2005 01:00 am Here is another patch that fixes the displayed, decompiled output of the E4X dot query operator. It was missing the terminating right parathesis. --- rhino1_6R2pre-org/src/org/mozilla/javascript/Parser.java +++ rhino1_6R2pre-new/src/org/mozilla/javascript/Parser.java @@ -1702,6 +1702,7 @@ decompiler.addToken(Token.DOTQUERY); pn = nf.createDotQuery(pn, expr(false), ts.getLineno()); mustMatchToken(Token.RP, "msg.no.paren"); + decompiler.addToken(Token.RP); break; case Token.LB: .