Subj : Re: Rhino 1.6R2 release candidate available To : netscape.public.mozilla.jseng From : Olinda Spider Date : Sun Aug 28 2005 12:56 am Here is a patch that fixes a problem when the debugger displays functions that contain an E4X dot query operation. Without this patch, the RuntimeException in the default case just below this patch is thrown. --- rhino1_6R2pre-org/src/org/mozilla/javascript/Decompiler.java +++ rhino1_6R2pre-new/src/org/mozilla/javascript/Decompiler.java @@ -783,6 +783,10 @@ result.append(".."); break; + case Token.DOTQUERY: + result.append(".("); + break; + case Token.XMLATTR: result.append('@'); break; .