michael@0: # Debugger.Script michael@0: michael@0: A `Debugger.Script` instance refers to a sequence of bytecode in the michael@0: debuggee; it is the [`Debugger`][debugger-object] API's presentation of a JSAPI `JSScript` michael@0: object. Each of the following is represented by single JSScript object: michael@0: michael@0: * The body of a function—that is, all the code in the function that is not michael@0: contained within some nested function. michael@0: michael@0: * The code passed to a single call to `eval`, excluding the bodies of any michael@0: functions that code defines. michael@0: michael@0: * The contents of a `