Subj : Re: JS_EvaluateUCInStackFrame() question To : Michael Daumling From : Brendan Eich Date : Mon Sep 05 2005 03:56 pm Michael Daumling wrote: > I am writing a homebrew debug API without using JSD. In this debugger, > I call JS_EvaluateUCInStackFrame() to evaluate console input. If I do > this at a breakpoint inside a function, I cannot access local variables > or arguments by name. Is there anything I should do so I can access > these variables by means of console input? Try calling JS_GetFrameCallObject first -- this looks like the workaround jsd uses, although it's hard to tell. If that works, please file a bug on the JS engine. There shouldn't be any need to add such a call. Thanks, /be .