Lines Matching full:frame
157 const FRAME_TYPE = 'frame';
360 * Check whether the mirror reflects a stack frame.
361 * @returns {boolean} True if the mirror reflects a stack frame
1251 * Wrapper for the frame details information retreived from the VM. The frame
1264 * @param {number} index Frame number
1370 * @param {number} break_id The break id in the VM for which this frame is
1372 * @param {number} index The frame index (top frame is index 0)
1391 // Get the function for this frame from the VM.
1396 // frame is unresolved.
1511 // Format frame invoaction (receiver, function and arguments).
1649 function ScopeDetails(frame, index) {
1650 this.break_id_ = frame.break_id_;
1651 this.details_ = %GetScopeDetails(frame.break_id_,
1652 frame.details_.frameId(),
1671 * @param {FrameMirror} frame The frame this scope is a part of
1672 * @param {number} index The scope index in the frame
1676 function ScopeMirror(frame, index) {
1678 this.frame_index_ = frame.index_;
1680 this.details_ = new ScopeDetails(frame, index);