Backed out changeset 0d41c950b1a0

This commit is contained in:
Eddy Bruel 2016-06-07 16:28:23 +02:00
parent b39492778a
commit e24c9b4fd9

View File

@ -158,34 +158,27 @@ from its prototype:
this is a string which is the name of the template; `undefined` otherwise.
`isBoundFunction`
: If the referent is a debuggee function, returns `true` if the referent is a
bound function; `false` otherwise. If the referent is not a debuggee
function, or not a function at all, returns `undefined` instead.
: `true` if the referent is a bound function; `false` otherwise.
`isArrowFunction`
: If the referent is a debuggee function, returns `true` if the referent is an
arrow function; `false` otherwise. If the referent is not a debuggee
function, or not a function at all, returns `undefined` instead.
: `true` if the referent is an arrow function; `false` otherwise.
`isPromise`
: `true` if the referent is a Promise; `false` otherwise.
`boundTargetFunction`
: If the referent is a bound debuggee function, this is its target function—
the function that was bound to a particular `this` object. If the referent
is either not a bound function, not a debuggee function, or not a function
at all, this is `undefined`.
: If the referent is a bound function, this is its target function—the
function that was bound to a particular `this` object. If the referent
is not a bound function, this is `undefined`.
`boundThis`
: If the referent is a bound debuggee function, this is the `this` value it
was bound to. If the referent is either not a bound function, not a debuggee
function, or not a function at all, this is `undefined`.
: If the referent is a bound function, this is the `this` value it was
bound to. If the referent is not a bound function, this is `undefined`.
`boundArguments`
: If the referent is a bound debuggee function, this is an array (in the
Debugger object's compartment) that contains the debuggee values of the
`arguments` object it was bound to. If the referent is either not a bound
function, not a debuggee function, or not a function at all, this is
: If the referent is a bound function, this is an array (in the Debugger
object's compartment) that contains the debuggee values of the `arguments`
object it was bound to. If the referent is not a bound function, this is
`undefined`.
`proxyHandler`