Debugger: Difference between revisions

18 bytes removed ,  29 September 2011
(→‎Accessor Properties of the Debugger.Frame Prototype Object: Clarify onPop's behavior when frame is forced to comlpete.)
Line 629: Line 629:


<dl>
<dl>
<dt>boundIdentifiers()
<dt>names()
<dd>Return an array of strings giving the names of the identifiers bound by this environment.
<dd>Return an array of strings giving the names of the identifiers bound by this environment.


Line 644: Line 644:
<dd>Create or reconfigure the variable named <i>name</i> bound in this environment according to <i>descriptor</i>. On success, return <code>undefined</code>; on failure, throw an appropriate exception.
<dd>Create or reconfigure the variable named <i>name</i> bound in this environment according to <i>descriptor</i>. On success, return <code>undefined</code>; on failure, throw an appropriate exception.


<dt>findBinding(<i>name</i>)
<dt>find(<i>name</i>)
<dd>Return a reference to the innermost environment, starting with this environment, that binds <i>name</i>, a string. If <i>name</i> is unbound in this environment, return <code>null</code>.
<dd>Return a reference to the innermost environment, starting with this environment, that binds <i>name</i>, a string. If <i>name</i> is unbound in this environment, return <code>null</code>.


638

edits